-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
The Apache Ant Team is pleased to announce the release of Apache Ant
1.9.7.
Version 1.9.7 is mostly a bug fix release but adds a few new features
like support for arbitrary filesyste resources in and initial
support for Java9 modules.
Apache Ant is
Hello,
in my ant script, I define a task "MyTask" via "macrodef". The task has a
mandatory attribute "nodeName" (not the camelCase name).
Then I call the task from a javascript snippet:
var myTask = project.createTask('myTask');
myTask.setDynamicAttribute("nodeName", "blah");
myTask.perform();