Author Login
Post Reply
I know somebody already asked this question a few years ago, but I couldn't
find the answer, so try again
I use Ant 1.6.5
<project name= "test">
<macrodef name= "my-macro">
<attribute name= "host"/ >
<sequential>
<echo>macro called with host '${host}'</echo>
</sequential>
</macrodef >
<target name= "test">
<script language= "..."><![CDATA[
newTask = project.createTask("my-macro");
newTask.setDynamicAttribute( "host", "bingo");
newTask.execute();
]] ></script>
</target>
</project >
This returns:
org.mozilla.javascript.EcmaError: TypeError: Cannot call method
"setDynamicAttribute" of null
Any help would be appreciated!
--
Sent from the Ant - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)