I am working on multi-module Java EE web application project(maven project) which have 23 modules. It have main 4 modules which can be used separately and other modules are supported back end module for those 4 modules.
When the project is built, it takes 4-15 minutes to finish the build process because all the modules are built along with the build process.
- When rebuilding, I want to avoid compiling and packaging sources/modules that are not changed, with the use of IDE itself. (Additionally I require selective cleaning of those modules that changed as well)
- I want to build the project with selected modules which I require without using command line argument (with the use of IDE itself).
I am aware of maven up to some level also. Please someone help me to overcome these problems.