Skip to content

Instantly share code, notes, and snippets.

@4lberto
Last active January 31, 2018 16:50
Show Gist options
  • Save 4lberto/e3c40559a28c16f02b956a4b5c59e486 to your computer and use it in GitHub Desktop.
Save 4lberto/e3c40559a28c16f02b956a4b5c59e486 to your computer and use it in GitHub Desktop.
mvn commands
#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