Short Answer
Use <foreach> with a nested <FileSet>
( http://ant-contrib.sourceforge.net/ )
Updated Example for recent ant-contrib:
This will antcall the target "bar" with the ${theFile} resulting in the current file.
Example
Here is an example which foreach file matching the fileset's filters... will invoke the ant target "bar".
This example was taken from Original Source
Documentation on AntCall can be found:Here
In build.properties:
foreach.file--a full filename from the defined fileset,
foreach.dir--the directory of the file,
foreach.name.ext--the name of the file, without path but with extension,
foreach.name--the name of the file, without path and without extension
Example:
<target name="foo">
<foreach>
<fileset dir="${server.src}" casesensitive="yes">
<include name="**/*.java"/>
<exclude name="**/*Test*"/>
</fileset>
<antcall target="bar">
<param name="property1" value="aaaaa" />
<param name="foo" value="bar" />
</antcall>
</foreach>
</target>
<target name="bar" depends="init">
<echo message="prop is ${property1} ${foo}" />
<echo message="foreach.file is ${foreach.file}" />
<echo message="foreach.dir is ${foreach.dir}" />
<echo message="foreach.name.ext is ${foreach.name.ext}" />
<echo message="foreach.name is ${foreach.name}" />
</target>