Maven Concepts - Lifecycle: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
=External= | =External= | ||
* 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# | * https://maven.apache.org/ref/3.3.9/maven-core/lifecycles.html# | ||
Line 6: | Line 7: | ||
* [[Maven Concepts#Lifecycle|Maven Concepts]] | * [[Maven Concepts#Lifecycle|Maven Concepts]] | ||
=Overview= | |||
A Maven lifecycle | |||
A Maven phase | |||
=Phases= | =Phases= |
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
- 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.