Call a target foreach entry in a set of parameters based on a fileset. For Axis development; there is no support or stability associated with this task
<target name="target1"> <foreach target="target2"> <param name="param1"> <fileset refid="fset1"/> </param> <param name="param2"> <item value="jar" /> <item value="zip" /> </param> </foreach> </target> <target name="target2"> <echo message="prop is ${param1}.${param2}" /> </target>
Really this just a wrapper around "AntCall"
Added a "type" attribute that works precisely like its equivalent in ExecuteOn
. It allows the user to specify whether directories, files, or both directories and files from the filesets are included as entries in the parameter set.