Maven Lifecycle
Last updated
Was this helpful?
Last updated
Was this helpful?
To understand Maven one first needs to understand the
Not all phases are meant to be called by the user, as some are hooks for the plugins.
The main phases, which can be used, are:
validate
compile
test
package
verify
install
deploy
Prefixed phases, starting with pre-, post- and process- should be avoided. These are not meant to be called by users and may cause problems.