blob: 4669a6c5f430610e4630e6ac03979afb06f20d42 [file] [log] [blame]
<project>
<target name="simple">
<macrodef name="my.echo">
<attribute name="text"/>
<sequential>
<echo message="${text}"/>
</sequential>
</macrodef>
<my.echo text="Hello World"/>
</target>
<target name="text">
<macrodef name="my.echo">
<attribute name="text"/>
<sequential>
<echo>${text}</echo>
</sequential>
</macrodef>
<my.echo text="Inner Text"/>
</target>
<target name="uri">
<macrodef name="echo" uri="abc">
<attribute name="text"/>
<sequential>
<echo message="${text}"/>
</sequential>
</macrodef>
<x:echo xmlns:x="abc" text="Hello World"/>
</target>
<target name="nested">
<macrodef name="nested">
<element name="nested"/>
<sequential>
<nested/>
</sequential>
</macrodef>
<nested>
<nested>
<echo>A nested element</echo>
</nested>
</nested>
</target>
</project>