Skip to content

Commit 1b23cdd

Browse files
committed
Bum to 1.3.3
1 parent 22d7c6a commit 1b23cdd

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,7 @@
1212
hs_err_pid*
1313

1414
# Mac desktop service store files
15-
.DS_Store
15+
.DS_Store
16+
build
17+
dist
18+
target

build.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<property name="dist" value="dist"/>
2323
<property name="test" value="test"/>
2424

25-
<property name="version" value="1.3.2"/>
25+
<property name="version" value="1.3.3"/>
2626
</target>
2727

2828
<target name="clean" depends="init">
@@ -69,7 +69,7 @@
6969
<tag name="created" description="Created:"/>
7070
</javadoc>
7171

72-
<!-- create Maven javadoc artifact -->
72+
<!-- create Maven javadoc artifact -->
7373
<jar basedir="${build}/doc"
7474
excludes="**/*Test*/**"
7575
includes="**/*"
@@ -83,7 +83,7 @@
8383
<attribute name="Main-Class" value="net.sourceforge.jtds.jdbc.Driver"/>
8484
</manifest>
8585
</jar>
86-
<!-- create Maven sources artifact -->
86+
<!-- create Maven sources artifact -->
8787
<jar basedir="${build}/src"
8888
excludes="**/*Test*/**"
8989
includes="**/*.java"
@@ -185,7 +185,7 @@
185185

186186
<target name="maven_upload" depends="dist" description="deploy release version to Maven staging repository">
187187

188-
<input message="Please enter GPG passphrase:" addproperty="passphrase" />
188+
<input message="Please enter GPG passphrase:" addproperty="passphrase" />
189189

190190
<!-- define Maven coordinates -->
191191
<property name="groupId" value="jtds.sourceforge.net" />
@@ -213,7 +213,7 @@
213213

214214
<!-- sign and deploy the sources artifact -->
215215
<artifact:mvn>
216-
216+
217217
<arg value="org.apache.maven.plugins:maven-gpg-plugin:1.3:sign-and-deploy-file" />
218218
<arg value="-Dgpg.passphrase=${passphrase}" />
219219
<arg value="-Durl=${maven-staging-repository-url}" />
@@ -238,4 +238,4 @@
238238

239239
</target>
240240

241-
</project>
241+
</project>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111
<groupId>net.sourceforge.jtds</groupId>
1212
<artifactId>jtds</artifactId>
13-
<version>1.3.1</version>
13+
<version>1.3.3</version>
1414
<packaging>jar</packaging>
1515
<name>jTDS</name>
1616

@@ -23,12 +23,12 @@
2323
</license>
2424
</licenses>
2525

26-
<description>jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver
26+
<description>jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver
2727
for Microsoft SQL Server (6.5, 7, 2000, 2005, 2008, 2012) and Sybase ASE
2828
(10, 11, 12, 15). jTDS is based on FreeTDS and is currently the fastest
2929
production-ready JDBC driver for SQL Server and Sybase. jTDS is 100% JDBC
3030
3.0 compatible, supporting forward-only and scrollable/updateable ResultSets
31-
and implementing all the DatabaseMetaData and ResultSetMetaData methods.
31+
and implementing all the DatabaseMetaData and ResultSetMetaData methods.
3232
</description>
3333

3434
<scm>
@@ -54,4 +54,4 @@
5454
</dependency>
5555
</dependencies>
5656

57-
</project>
57+
</project>

0 commit comments

Comments
 (0)