Lifecycle steps of Maven Build
Following are the lifecycle steps of Maven Build:
validate : validate the verify the project correctness.
compile : compiles the prepared and provided source code.
test : check and run the unit test cases.
package : prepared packages of the compiled code in archived file
integration-test : run additional tests, which require the packaging
verify : verify and validate whether the package is valid or not.
install : Installs the packaged file in the local repository of maven.
deploy : Deploys the packaged to a local repository or in the the specified server location.