Browse Source

Add a sample to script to test the functionlaity of the -ref attribute expansion

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270760 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
99a9f19403
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      proposal/myrmidon/src/make/sample.ant

+ 10
- 0
proposal/myrmidon/src/make/sample.ant View File

@@ -160,4 +160,14 @@ Legal:
<log message="cvs done!"/>
</target>

<target name="ref-test">
<property name="refme1" value="These are not the droids you are looking for." />
<property name="refme2" value="Move along." />

<log message="Following should be a deomnstration of the -ref attribute extension:"/>
<log message-ref="refme1"/>
<log message-ref="refme2"/>
</target>


</project>

Loading…
Cancel
Save