Class Phase
java.lang.Object
org.apache.maven.plugin.lifecycle.Phase
- All Implemented Interfaces:
- Serializable
A phase mapping definition.
- See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classBuilder class used to create Phase instances.
- 
Method SummaryModifier and TypeMethodDescriptionConfiguration to pass to all goals run in this phase.The goals to execute within the phase.getId()The ID of this phase, e.g.,generate-sources.static Phase.BuilderCreates a new Phase builder instance.static Phase.BuildernewBuilder(boolean withDefaults) Creates a new Phase builder instance using default values or not.static Phase.BuildernewBuilder(Phase from) Creates a new Phase builder instance using the specified object as a basis.static Phase.BuildernewBuilder(Phase from, boolean forceCopy) Creates a new Phase builder instance using the specified object as a basis.static PhaseCreates a new Phase instance.static PhasenewInstance(boolean withDefaults) Creates a new Phase instance using default values or not.with()Creates a new builder with this object as the basis.withConfiguration(Dom configuration) Creates a new Phase instance using the specified configuration.withExecutions(Collection<Execution> executions) Creates a new Phase instance using the specified executions.Creates a new Phase instance using the specified id.
- 
Method Details- 
getIdThe ID of this phase, e.g.,generate-sources.
- 
getExecutionsThe goals to execute within the phase.
- 
getConfigurationConfiguration to pass to all goals run in this phase.
- 
withCreates a new builder with this object as the basis.
- 
withIdCreates a new Phase instance using the specified id.
- 
withExecutionsCreates a new Phase instance using the specified executions.
- 
withConfigurationCreates a new Phase instance using the specified configuration.
- 
newInstanceCreates a new Phase instance. Equivalent tonewInstance( true ).- See Also:
 
- 
newInstanceCreates a new Phase instance using default values or not. Equivalent tonewBuilder( withDefaults ).build().
- 
newBuilderCreates a new Phase builder instance. Equivalent tonewBuilder( true ).- See Also:
 
- 
newBuilderCreates a new Phase builder instance using default values or not.
- 
newBuilderCreates a new Phase builder instance using the specified object as a basis. Equivalent tonewBuilder( from, false ).
- 
newBuilderCreates a new Phase builder instance using the specified object as a basis.
 
-