Last active
January 31, 2018 16:50
-
-
Save 4lberto/e3c40559a28c16f02b956a4b5c59e486 to your computer and use it in GitHub Desktop.
mvn commands
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
#Ejecutar según tipo de test | |
mvn clean install -DskipUTs=true for skipping surefire tests. | |
mvn clean install -DskipITs=true for skipping failsafe tests. | |
mvn clean install -DskipTests=true for skipping all tests. | |
mvn clean install -Dmaven.test.skip=true neither compile test not execute them | |
#Test parciales | |
mvn -Dtest=TestCi*le test | |
mvn -Dtest=TestSquare,TestCi*le test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment