hlship 2004/09/27 07:38:27
Modified: hivebuild project.xml jar-module.xml
Log:
Add clean-code target to jar-module and project.
Revision Changes Path
1.3 +5 -1 jakarta-hivemind/hivebuild/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/jakarta-hivemind/hivebuild/project.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- project.xml 24 Jul 2004 22:18:13 -0000 1.2
+++ project.xml 27 Sep 2004 14:38:27 -0000 1.3
@@ -54,6 +54,10 @@
<antcall target="hivebuild.clean"/>
</target>
+
+ <target name="clean-code" description="Deletes compiled code in each
module.">
+ <reinvoke-ant target="clean-code"/>
+ </target>
<target name="marshall-documentation" description="Marshall
documentation in the project and in each module.">
<antcall target="forrest.marshall-documentation"/>
1.13 +5 -0 jakarta-hivemind/hivebuild/jar-module.xml
Index: jar-module.xml
===================================================================
RCS file: /home/cvs/jakarta-hivemind/hivebuild/jar-module.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- jar-module.xml 27 Aug 2004 13:36:25 -0000 1.12
+++ jar-module.xml 27 Sep 2004 14:38:27 -0000 1.13
@@ -297,4 +297,9 @@
<target name="install" depends="jar"
description="Synonym for 'jar' invoked by the containing
project."/>
+ <target name="clean-code"
+ description="Cleans compiled Java code.">
+ <delete dir="${java.classes.dir}" quiet="true"/>
+ <delete dir="${test.classes.dir}" quiet="true"/>
+ </target>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]