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 Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilder class used to create Execution instances. -
Method Summary
Modifier and TypeMethodDescriptionConfiguration 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(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
-
getConfiguration
Configuration to pass to the goals. -
getGoals
The goals to execute. -
with
Creates a new builder with this object as the basis. -
withConfiguration
Creates a new Execution instance using the specified configuration. -
withGoals
Creates a new Execution instance using the specified goals. -
newInstance
Creates a new Execution instance. Equivalent tonewInstance( true ).- See Also:
-
newInstance
Creates a new Execution instance using default values or not. Equivalent tonewBuilder( withDefaults ).build(). -
newBuilder
Creates a new Execution builder instance. Equivalent tonewBuilder( true ).- See Also:
-
newBuilder
Creates a new Execution builder instance using default values or not. -
newBuilder
Creates a new Execution builder instance using the specified object as a basis. Equivalent tonewBuilder( from, false ). -
newBuilder
Creates a new Execution builder instance using the specified object as a basis.
-