After fiddling around a bit I came upon a small problem: We use subant with an ordered filelist to execute the same target in multiple subfolders like this:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<project default="packaging-distribution" name="zzz-delegator">
<target name="delegate">
<fail unless="target">no target to delegate</fail>
<subant antfile="build.xml" target="${target}" verbose="true">
<propertyset>
<propertyref name="project.dist.dir"></propertyref>
<propertyref name="project.aop.dir"></propertyref>
<propertyref name="project.deploy.dir"></propertyref>
</propertyset>
<filelist refid="project.ordered.modules"></filelist>
</subant>
</target>
</project>

Greetings
Mathias