Class ExecutionPlanItem
- java.lang.Object
-
- org.apache.maven.lifecycle.internal.ExecutionPlanItem
-
public class ExecutionPlanItem extends java.lang.Object
Wraps individual MojoExecutions, containing information about completion status and scheduling.
NOTE: This class is not part of any public api and can be changed or deleted without prior notice.- Since:
- 3.0
-
-
Field Summary
Fields Modifier and Type Field Description private MojoExecution
mojoExecution
-
Constructor Summary
Constructors Constructor Description ExecutionPlanItem(MojoExecution mojoExecution)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.List<ExecutionPlanItem>
createExecutionPlanItems(MavenProject mavenProject, java.util.List<MojoExecution> executions)
java.lang.String
getLifecyclePhase()
MojoExecution
getMojoExecution()
Plugin
getPlugin()
java.lang.String
toString()
-
-
-
Field Detail
-
mojoExecution
private final MojoExecution mojoExecution
-
-
Constructor Detail
-
ExecutionPlanItem
public ExecutionPlanItem(MojoExecution mojoExecution)
-
-
Method Detail
-
createExecutionPlanItems
public static java.util.List<ExecutionPlanItem> createExecutionPlanItems(MavenProject mavenProject, java.util.List<MojoExecution> executions)
-
getMojoExecution
public MojoExecution getMojoExecution()
-
getLifecyclePhase
public java.lang.String getLifecyclePhase()
-
getPlugin
public Plugin getPlugin()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-