Author: nextgens
Date: 2006-01-10 18:18:51 +0000 (Tue, 10 Jan 2006)
New Revision: 7837
Modified:
trunk/freenet/build.xml
Log:
updated ant build file : now freenet-cvs-snapshot.jar will be created into /lib
and the distclean target will do its job
Modified: trunk/freenet/build.xml
===================================================================
--- trunk/freenet/build.xml 2006-01-10 18:05:48 UTC (rev 7836)
+++ trunk/freenet/build.xml 2006-01-10 18:18:51 UTC (rev 7837)
@@ -57,7 +57,7 @@
<!-- Create the distribution directory -->
<!--<mkdir dir="."/>-->
<!-- Put everything in ${build} into the freenet-${DSTAMP}.jar file -->
- <jar jarfile="freenet-cvs-snapshot.jar" basedir="${build}">
+ <jar jarfile="${lib}/freenet-cvs-snapshot.jar" basedir="${build}">
<manifest>
<attribute name="Main-Class" value="freenet/node/Node"/>
<attribute name="Built-By" value="${user.name}"/>
@@ -78,7 +78,7 @@
<delete dir="${build}"/>
<!--<delete><fileset dir="src" includes="**/*.class"/></delete>-->
</target>
- <target name="distclean" description="Delete class files and docs dir.">
+ <target name="distclean" description="Delete class files, lib dir and docs
dir.">
<delete dir="${build}"/>
<delete dir="${lib}"/>
<!--<delete><fileset dir="src" includes="**/*.class"/></delete>-->