Maven lifecycle
Published: March 8, 2022
Maven has some default build lifecycle phases, the most important ones are shown here.
validate
- validate the project is correct and all necessary information is availablecompile
- compile the source code of the projecttest
- test the compiled source code using a suitable unit testing framework. These tests should not require the code to be packaged or deployedpackage
- take the compiled code and package it in its distributable format, such as a JAR.verify
- run any checks on results of integration tests to ensure quality criteria are metinstall
- install the package into the local repository, for use as a dependency in other projects locallydeploy
- done in the build environment, copies the final package to the remote repository for sharing with other developers and projects.
Running any of these will run each command earlier in the lifecycle. Meaning:
mvn test
: validate
-> compile
-> test
mvn install
: validate
-> compile
-> test
-> package
-> verify
-> install
Full list of default lifecycle is shown at https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html#default-lifecycle