Reputation: 4864
I have WEBPAP project depending on many others projects,
The clean of the WEBPAP project, cause the build of all others, could i prevent this? without closing them.
Upvotes: 0
Views: 26
Reputation: 8960
Well, in Eclipse, when you selected Project -> Clean... from the menu, it allows you to select the projects which you'd like to clean.
Disable Eclipse's refresh on startup: Preferences -> General -> Startup and Shutdown -> Refresh workspace on startup
Disable automatic build: Menu -> Project -> Build Automatically
If you're using project management tools such as Maven, you may want to take a look at its specific build settings.
Upvotes: 1