vote up 0 vote down star

I am having a bit of trouble building my project with Ant. I wanted to take a look at the Ant scripts that eclipse uses to build my project. How can I do this?

flag

3 Answers

vote up 2 vote down check

Select Project » Properties » Builders to see what runs when Eclipse builds your project.

link|flag
That doesn't actually let you view the XML does it? – willcodejavaforfood Apr 21 at 12:49
1  
The actual xml is in the .project file in your project. It's not ant, but a description of which incremental project builders will be run to build the project. Note that some of the builders could be ant scripts or external programs. – Scott Stanchfield Apr 21 at 16:37
True - in the novice case there are probably only have built-in (non-Ant) builders, but in general you might also have your own custom builders that are Ant tasks. – Peter Hilton Apr 22 at 15:26
vote up 1 vote down

I don't think eclipse uses ant scripts to build your project by default. However, eclipse can generate ant scripts for you. This can be done by right click project > export > General > Ant buildfiles. Make sure you uncheck the 'use eclipse compiler' if you want the build file to be usable from outside of eclipse.

link|flag
vote up 1 vote down

No ant scripts are used building in the workspace, however, exporting your projects does use ant scripts. You can generate such scripts by right click on the MANIFEST.MF or feature.xml and PDE Tools -> Create Ant Build File.

The exact contents of the generated ant scripts will depend on the options selected for export, so there may be some differences.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.