Eclispe Maven Build
Eclipse's M2eclipse plug-in provides the MVN command in the eclipse's right-click menu
After M2eclipse, whenever you modify any of the files in Maven project, the automatic build,console output is triggered as follows: Maven builder:auto_build life Cycle Phases ( Stages of the life cycle) Validate
Validate the project is correct and all necessary information is available compile
Compile the source code of the project test
Test the compiled source code using a suitable unit testing framework. These tests should not require the code to be packaged or deployed package
Take the compiled code and package it in its distributable format, such as a JAR. integration-test
Process and deploy the package if necessary into a environment where integration tests can be run verify
Run any checks to verify the package is valid and meets quality criteria install
Install the "package into the" repository, for use as a dependency in other projects locally
Done in a integration or release environment, copies the final package to the remote repository for sharing and other de Velopers and projects.