Hi,
 
Please excuse the somewhat newbie-ish question, but is it possible to call an ant target from within a macrodef?
 
The attached file contains a simplified example.
 
When run, I get the following error:
 
"Ant could not find the task or a class this task relies upon...."
 
Many Thanks!
- Michael
<project default="test">

<target name="foo">
	<echo message="hi there!"/>
</target>

<target name="test">
	<bar/>
</target>

<macrodef name="bar">
	<sequential>
		<foo/>
	</sequential>
</macrodef>

</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to