Browse Source

Update sample

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269086 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
68145035f0
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      proposal/myrmidon/src/make/sample.ant

+ 6
- 4
proposal/myrmidon/src/make/sample.ant View File

@@ -20,11 +20,11 @@ Legal:


<target name="main" depends="property-test" /> <target name="main" depends="property-test" />


<target name="no-test-target" unless="do-tests">
<target name="no-test-target" if="no-do-tests">
<echo message="No tests done here"/> <echo message="No tests done here"/>
</target> </target>


<target name="test-target" depends="no-test-target" if="do-tests">
<target name="test-target" depends="no-test-target" unless="no-do-tests">


<echo message="Tests away"/> <echo message="Tests away"/>


@@ -45,11 +45,13 @@ Legal:
/> />


<sub-elements-test> <sub-elements-test>
<!--
<create-beep message="Evaluation of ant.install.dir=${ant.install.dir}" /> <create-beep message="Evaluation of ant.install.dir=${ant.install.dir}" />
<add-beep message="Evaluation of ant.install.lib=${ant.install.lib}" />
<add-beep message="Evaluation of ant.install.lib=${ant.install.lib}" />
-->
</sub-elements-test> </sub-elements-test>


<conf-test message="Test of configuration=${ant.install.lib}" />
<!-- <conf-test message="Test of configuration=${ant.install.lib}" /> -->
<content-test>123</content-test> <content-test>123</content-test>


Loading…
Cancel
Save