Class Execution
java.lang.Object
org.apache.maven.plugin.lifecycle.Execution
- All Implemented Interfaces:
- Serializable
A set of goals to execute.
- See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classBuilder class used to create Execution instances.
- 
Method SummaryModifier and TypeMethodDescriptionorg.apache.maven.api.xml.DomConfiguration to pass to the goals.getGoals()The goals to execute.static Execution.BuilderCreates a new Execution builder instance.static Execution.BuildernewBuilder(boolean withDefaults) Creates a new Execution builder instance using default values or not.static Execution.BuildernewBuilder(Execution from) Creates a new Execution builder instance using the specified object as a basis.static Execution.BuildernewBuilder(Execution from, boolean forceCopy) Creates a new Execution builder instance using the specified object as a basis.static ExecutionCreates a new Execution instance.static ExecutionnewInstance(boolean withDefaults) Creates a new Execution instance using default values or not.with()Creates a new builder with this object as the basis.withConfiguration(org.apache.maven.api.xml.Dom configuration) Creates a new Execution instance using the specified configuration.withGoals(Collection<String> goals) Creates a new Execution instance using the specified goals.
- 
Method Details- 
getConfigurationpublic org.apache.maven.api.xml.Dom getConfiguration()Configuration to pass to the goals.
- 
getGoalsThe goals to execute.
- 
withCreates a new builder with this object as the basis.
- 
withConfigurationCreates a new Execution instance using the specified configuration.
- 
withGoalsCreates a new Execution instance using the specified goals.
- 
newInstanceCreates a new Execution instance. Equivalent tonewInstance( true ).- See Also:
 
- 
newInstanceCreates a new Execution instance using default values or not. Equivalent tonewBuilder( withDefaults ).build().
- 
newBuilderCreates a new Execution builder instance. Equivalent tonewBuilder( true ).- See Also:
 
- 
newBuilderCreates a new Execution builder instance using default values or not.
- 
newBuilderCreates a new Execution builder instance using the specified object as a basis. Equivalent tonewBuilder( from, false ).
- 
newBuilderCreates a new Execution builder instance using the specified object as a basis.
 
-