Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 355 Bytes

File metadata and controls

12 lines (9 loc) · 355 Bytes

mvn -DskipTests goal

  • skip tests

mvn exec:java

  • execute application normally (assuming it is already packaged)
    • otherwise: mvn package exec:java

mvn exec:java -Dexec.args="arg1 arg2 arg3..."

  • execute application by passing arguments

mvn -N install

  • install this project non-recursively (don't recurse into child projects)