Created
January 28, 2013 07:29
-
-
Save laszlomiklosik/4653659 to your computer and use it in GitHub Desktop.
Maven multi-module build options
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Inspired from http://blog.akquinet.de/2010/05/26/mastering-the-maven-command-line-%E2%80%93-reactor-options/ | |
# Build only specific modules: | |
mvn clean install -pl sub-module-name2 | |
mvn clean install -pl sub-module-name2,sub-module-name3 | |
# Build only starting from specific sub-module (resume from) | |
mvn clean install -rf sub-module-name2 | |
# Build dependencies (also make) | |
mvn clean install –pl sub-module-name2 –am | |
# Build dependents (also make dependents) | |
mvn clean install -pl sub-module-name2 –amd | |
# Build only changed modules (compared to your SCM as specified in the pom file) | |
mvn reactor:make-scm-changes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maven extension gitflow-incremental-builder may be your friend. If you have multi-module maven project and you need to build or test only modules containing changes between two branches e.g. develop is usually stable and feature branches are not.