Skip to content

Instantly share code, notes, and snippets.

@akottr
Last active March 6, 2017 17:41
Show Gist options
  • Save akottr/5375181 to your computer and use it in GitHub Desktop.
Save akottr/5375181 to your computer and use it in GitHub Desktop.

maven commands

show dependency tree

mvn dependency:tree

download sources

mvn dependency:sources

build no tests

mvn install -DskipTests
# or
mvn install -Dmaven.test.skip=true 

Execute single test

# single test
mvn test -Dtest=MyTest
# single method
mvn test -Dtest=MyTest#myMethod

Resume from failure

mvn -rf

Fail at end

mvn -fae
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment