Wednesday, February 20, 2008

Some useful ant tasks

Call another target within another buildfile
<ant antfile="../AnotherProject/build.xml" target="mytarget">


Call another target within the same buildfile. It can be used also for imported buildfile.
<antcall target="mytarget">


The complete list of Ant core tasks can be found here.

No comments: