donaldp 01/06/08 02:42:40
Modified: proposal/myrmidon/src/make sample.ant
Log:
Update sample build file.
Revision Changes Path
1.5 +6 -2 jakarta-ant/proposal/myrmidon/src/make/sample.ant
Index: sample.ant
===================================================================
RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/src/make/sample.ant,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sample.ant 2001/06/06 06:12:55 1.4
+++ sample.ant 2001/06/08 09:42:39 1.5
@@ -20,11 +20,11 @@
<target name="main" depends="property-test" />
- <target name="no-test-target" if="no-do-tests">
+ <target name="no-test-target" unless="no-do-tests">
<echo message="No tests done here"/>
</target>
- <target name="test-target" depends="no-test-target" unless="no-do-tests">
+ <target name="test-target" depends="no-test-target" if="no-do-tests">
<echo message="Tests away"/>
@@ -95,6 +95,10 @@
</property>
<echo message="foo2=${foo2}" />
+
+ <pattern id="foo3" name="*.java" if="foo" />
+
+ <echo message="foo3=${foo3}" />
</target>