You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/jtds/files/jtds-1.2.5-build.xml.patch

30 lines
1009 B

--- build.xml.orig 2009-11-07 18:55:41.000000000 +0100
+++ build.xml 2009-11-07 18:58:17.000000000 +0100
@@ -75,13 +75,13 @@
</junit>
</target>
- <target name="dist" depends="clean,compile,javadoc">
+ <target name="jar" depends="compile">
<mkdir dir="${dist}"/>
<!-- Runtime jar -->
<jar basedir="${build}/classes"
excludes="net/sourceforge/jtds/test/*.class"
includes="**/*"
- jarfile="${build}/${ant.project.name}-${version}.jar">
+ jarfile="${build}/${ant.project.name}.jar">
<manifest>
<attribute name="Implementation-Title" value="jTDS JDBC Driver"/>
<attribute name="Implementation-Version" value="${version}"/>
@@ -92,6 +92,10 @@
<attribute name="Main-Class" value="net.sourceforge.jtds.jdbc.Driver"/>
</manifest>
</jar>
+
+ </target>
+
+ <target name="dist" depends="jar">
<!-- Source package -->
<copy todir="${dist}/tmp/doc">