Introduction
Description
Description
Phases | Phase | Description |
|---|---|
| validate | Validation of project is carried out and provides the necessary information required to complete the build process. |
| generate-resources | Source code generation to include while compiling. |
| process-sources | Source code is processed. |
| generate-resources | Resource generation to include in packages. |
| process-resources | Resources packing and copying into destination directory and is ready for package. |
| compile | Source code compilation |
| process-classes | Generated files into post-process after compilation. |
| generate-test-sources | Test source generation to include in compilation. |
| process-test-sources | Processing the test source code. |
| generate-test-resources | Creation of resources to test. |
| process-test-resources | Copying and processing the resources to test destination. |
| test-compile | Compiling the test source code to test destination. |
| test | With unit testing framework, one can run the tests. |
| prepare-package | Preparing the package by performing operations before actual packaging. |
| package | Gather the compiled code and package in JAR,WAR or EAR. |
| pre-integration test | The actions to be performed before integration tests are executed like setting the environment. |
| integration test | Processing and deploying the package. |
| post-integration test | Performing the action after executing the integration tests like cleaning the environment. |
| verify | Checking the packages are valid or not. |
| install | Installing the package into local repository. |
| deploy | Copying the package into remote repository. |
Description
Description
Key Points