I have a java project, with the standard Java Builder selected as it's sole builder. Also, the build is configured to build automatically.

What I would like to understand is the resulting build circumstances when I add an ant build to this project ( project --> properties --> builders ). What I would expect, is that everytime I make a change to my java source, both the Java Builder and my ant build will run, but it doesn't seem that my ant build runs.

When I first add the ant build, it runs, i.e I see the output in the console. However, when I then make changes to my source files, it doesn't run again, i.e. I don't see output in the console. I know that the Java Builder is still running due to the fact that my changes have entered into Eclipses code awareness, i.e. I can reference those changes from other classes, etc.

Note, if I manually invoke the build, i.e. via Project --> Build All, the ant build runs, i.e. I see the output in the console again.

So, why doesn't the ant build I've added run with the automitic building? Note, I wouldn't necessarily expect it to be able to do incremental work, since it's not made for that, but I would have thought it would fire off when the Java Builder fires off? Am I missing something?

link|improve this question

71% accept rate
This link ( eclipse.org/articles/Article-Builders/builders.html ) seems to suggest that perhaps my ant build is running, in the background, and the output just isn't coming to the console. It also suggests that both the automatic and Build All builds are "incremental" in that the builder will receive a delta of changes to it can apply it's build tasks incrementally . . . but if this is the case, I don't quite understand how my ant build.xml would have access to that delta info . . . – chad Sep 15 '11 at 17:01
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.