DEV Community

Discussion on: What is Proper Continuous Integration?

Collapse
 
bizzy237 profile image
Yury
mvn install -o -T 1C -pl modulename -am

Using modules for stuff that can be built independently and then running the build in parallel should help a bit. Using incremental builds is also faster because you don't need to rebuild everything if you only changed one file. And if you have all your dependencies in your local repository, you don't need to download the internet