I have an ANT build.xml file under my project. Using ant, I can execute the targets I define within build.xml.
using ANT, I want the build.xml to trigger eclipse to build an eclipse project.
For instance, rather thank clicking: Project > Build Working Set
An ant target does that instead, executed out of build.xml.
is there a special target or tag?
Also a concern, eclipse already has the classpath and environment defined. Do I have to redefine all that stuff?
Thanks…