donaldp 02/02/02 19:27:01
Modified: proposal/myrmidon build.xml
Log:
Rename dist target to dist-lite and create a new target dist that also runs
the tests.
Revision Changes Path
1.49 +6 -2 jakarta-ant/proposal/myrmidon/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/build.xml,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- build.xml 3 Feb 2002 02:34:31 -0000 1.48
+++ build.xml 3 Feb 2002 03:27:01 -0000 1.49
@@ -76,7 +76,7 @@
</path>
<!-- Main target -->
- <target name="main" depends="dist" />
+ <target name="main" depends="dist-lite" />
<!-- lets see what is available -->
<target name="check_for_optional_packages">
@@ -448,7 +448,7 @@
</target>
<!-- Creates the distribution -->
- <target name="dist" depends="jars">
+ <target name="dist-lite" depends="jars">
<mkdir dir="${dist.bin}"/>
<mkdir dir="${dist.lib}"/>
@@ -489,6 +489,10 @@
<fixcrlf srcdir="${dist.bin}" eol="lf" includes="ant" />
</target>
+
+ <!-- Creates the distribution -->
+ <target name="dist" depends="dist-lite,test"/>
+
<!-- Cleans up build and distribution directories -->
<target name="clean">
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>