Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 675 Bytes

maven.md

File metadata and controls

35 lines (23 loc) · 675 Bytes

Maven cheat sheet

Dependecies / Download / Offline mode

Download all sources and JavaDocs for the dependencies

mvn dependency:sources dependency:resolve -Dclassifier=javadoc

Download all dependencies before going offline

mvn dependency:go-offline

Using maven in offline mode

mvn -o clean build install

Skipping tasks

Skipping compilation of tests

mvn install -Dmaven.test.skip=true

Skipping execution of tests

mvn install -DskipTests=false