29 Sep 2009
Ant
Calling another ant file
To invoke a target in a separate ant file, you would use this code in one of your main file’s targets (etc):
<ant antfile="secondFile.xml" target="targetInSecondFile" />
My opinions on things I have opinions on
29 Sep 2009
To invoke a target in a separate ant file, you would use this code in one of your main file’s targets (etc):
<ant antfile="secondFile.xml" target="targetInSecondFile" />