Back to Home
Maven Helper
Categories
Select a category to view commands
Lifecycle
Click on any command to copy it to clipboard
Clean Build
Clean previous build artifacts
mvn cleanExample: mvn clean compile
Compile Source
Compile main source code
mvn compileExample: mvn clean compile
Run Tests
Run unit tests
mvn testExample: mvn clean test
Package Project
Create JAR/WAR file
mvn packageExample: mvn clean package
Install to Local Repository
Install artifact to local repository
mvn installExample: mvn clean install
Deploy to Remote Repository
Deploy artifact to remote repository
mvn deployExample: mvn clean deploy