Hello, is there any possibility to several projects from one build.xml.
Example:
<project basedir="." default="all" name="myapp">
</project>
<project basedir="." default="all" name="myapp2">
</project>
And also is there a possibility to link in external project build.xml
files to the current build.xml file.
AppA
build.xml
build.properties
AppB
build.xml
build.properties
MajorApp
build.xml
build.properties
MajorApp depends on AppA and AppB
Building MajorApp will use it's build.properties wich will override AppA
and AppB properties.
Lars