views:

310

answers:

2

Is there away to prevent eclipse from rebuilding the entire project every time I change an entry in the class path. Unfortunately, I have to play around with the build path often and rebuilding the projects takes a long time (easily 20-30 mins). Is there away to avoid this?

+3  A: 

A simpler way is turn off "Build Automatically" in Main Menu: Project/Build Automatically. This turns off auto-build mode, so you can trigger it manually (from same Project menu)

eugener
that is not sufficient, because it will force a rebuild of the entire project when a I do want to make a build
hhafez
How would compiler know what to do if you changing your build path? It has to check/compile every class to make sure your project still compilable. That is exactly what Eclipse does.
eugener
A: 

It should do the same thing it does when you change your source code: analyze what are the actual changes and perform an incremental build based on those.

Juha Paananen