blob: 333197fbb4c2e6858d6f046ddae782eea184a863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- 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">
|