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?