I need to be able to call the subant task in a predefined list of project folders, which may or may not be siblings.
I know that I can invoke the subtitle task as follows:
<subant antfile="custom-build.xml" target="custom-target" inheritall="false" failonerror="true"> <filelist dir="${parent.dir}"> <file name="project1"/> <file name="project2"/> ... <file name="projectn"/> </filelist> </subant>
This is fine if all the βprojectsβ are siblings in the file system, but it may not be so, so I need a way to tell the suband an explicit list of folders by absolute paths to search for custom-build.xml files to execute.
source share