<project name="subant" default="subant1">
<property name="build.dir" value="subant.build"/>
@@ -561,7 +561,7 @@
the root buildfile is capable to run the whole build over all
modules.
-
+
<subant failonerror="false">
<fileset dir="." includes="**/build.xml" excludes="build.xml"/>
@@ -569,8 +569,18 @@
<target name="build"/>
</subant>
-
- Does a "clean build" for each subproject.
+
+ Does a "clean build" for each subproject.
+ Hint: because buildfiles are plain xml, you could generate the
+ masterbuildfile from the common buildfile by using a XSLT transformation:
+
+
+
+ <xslt in="common.xml"
+ out="master.xml"
+ style="${ant.home}/etc/common2master.xsl"
+ />
+
@@ -585,4 +595,4 @@