Skip to content

Commit

Permalink
Bum to 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
milesibastos committed Jun 22, 2016
1 parent 22d7c6a commit 1b23cdd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@
hs_err_pid*

# Mac desktop service store files
.DS_Store
.DS_Store
build
dist
target
12 changes: 6 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<property name="dist" value="dist"/>
<property name="test" value="test"/>

<property name="version" value="1.3.2"/>
<property name="version" value="1.3.3"/>
</target>

<target name="clean" depends="init">
Expand Down Expand Up @@ -69,7 +69,7 @@
<tag name="created" description="Created:"/>
</javadoc>

<!-- create Maven javadoc artifact -->
<!-- create Maven javadoc artifact -->
<jar basedir="${build}/doc"
excludes="**/*Test*/**"
includes="**/*"
Expand All @@ -83,7 +83,7 @@
<attribute name="Main-Class" value="net.sourceforge.jtds.jdbc.Driver"/>
</manifest>
</jar>
<!-- create Maven sources artifact -->
<!-- create Maven sources artifact -->
<jar basedir="${build}/src"
excludes="**/*Test*/**"
includes="**/*.java"
Expand Down Expand Up @@ -185,7 +185,7 @@

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

<input message="Please enter GPG passphrase:" addproperty="passphrase" />
<input message="Please enter GPG passphrase:" addproperty="passphrase" />

<!-- define Maven coordinates -->
<property name="groupId" value="jtds.sourceforge.net" />
Expand Down Expand Up @@ -213,7 +213,7 @@

<!-- sign and deploy the sources artifact -->
<artifact:mvn>

<arg value="org.apache.maven.plugins:maven-gpg-plugin:1.3:sign-and-deploy-file" />
<arg value="-Dgpg.passphrase=${passphrase}" />
<arg value="-Durl=${maven-staging-repository-url}" />
Expand All @@ -238,4 +238,4 @@

</target>

</project>
</project>
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.3.1</version>
<version>1.3.3</version>
<packaging>jar</packaging>
<name>jTDS</name>

Expand All @@ -23,12 +23,12 @@
</license>
</licenses>

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

<scm>
Expand All @@ -54,4 +54,4 @@
</dependency>
</dependencies>

</project>
</project>

0 comments on commit 1b23cdd

Please sign in to comment.