Files

15 lines
403 B
XML
Raw Permalink Normal View History

2005-09-24 13:33:27 +00:00
--- build.xml.orig 2005-08-31 09:44:32.000000000 -0500
+++ build.xml 2005-08-31 09:53:38.000000000 -0500
@@ -63,4 +63,11 @@
</jar>
</target>
+ <target name="jar" depends="all">
+ <jar jarfile="lib/${ant.project.name}.jar" compress="true">
+ <fileset dir="${DESTINATION}">
+ <include name="**/*.class" />
+ </fileset>
+ </jar>
+ </target>
</project>