blob: c9c8fbdc3cec6d398c9deb12b5e9df28f5509e79 [file] [log] [blame]
<project name="test"
default="run-macro"
xmlns:xyz="http://xyz">
<macrodef name="echo-macro"
uri="http://xyz">
<attribute name="str" />
<element name="some-tasks" />
<sequential>
<echo>@{str}</echo>
<some-tasks/>
</sequential>
</macrodef>
<target name="run-macro">
<xyz:echo-macro str="s">
</xyz:echo-macro>
</target>
<presetdef name="my-javac" uri="http://xyz">
<javac fork="yes"></javac>
</presetdef>
</project>