Maven Concepts - Lifecycle: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 2: | Line 2: | ||
* Introduction to the Build Lifecycle https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html | * Introduction to the Build Lifecycle https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html | ||
* https://maven.apache.org/ref/3.3.9/maven-core/lifecycles.html# | * Lifecycles Reference https://maven.apache.org/ref/3.3.9/maven-core/lifecycles.html# | ||
=Internal= | =Internal= |
Revision as of 17:00, 18 November 2016
External
- Introduction to the Build Lifecycle https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
- Lifecycles Reference https://maven.apache.org/ref/3.3.9/maven-core/lifecycles.html#
Internal
Overview
A Maven lifecycle
A Maven phase
Phases
validate
initialize
generate-sources
process-sources
generate-resources
process-resources
compile
process-classes
generate-test-sources
process-test-sources
generate-test-resources
process-test-resources
test-compile
process-test-classes
test
prepare-package
package
If using the assembly plugin, this is usually the phase where the plugin's "single" goal is associated with.