Package com.gradle.scan.eventmodel.maven
Class MvnGoalExecutionStarted_1_0
java.lang.Object
com.gradle.scan.eventmodel.maven.MvnGoalExecutionStarted_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
@MavenVersion(since="3.3.1")
@MavenExtensionVersion(since="1.0")
public class MvnGoalExecutionStarted_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
Indicates that a goal has started executing.
An event stream will contain zero or more MvnGoalExecutionStarted_1_0
.
-
Field Summary
Modifier and TypeFieldDescriptionfinal @Nullable("when goal execution is invoked directly rather than as part of a build phase") String
The build phase as part of which this goal execution is executed.final String
The Maven goal execution ID.final long
The generated, unique ID of this goal execution.final String
The fully-qualified name of the Mojo class that provides the implementation of this goal.final String
The name of this goal.final long
The ID of the plugin that contributed this goal, referencing aMvnPlugin_1_0.id
.final long
The ID of the project this goal execution is bound to, referencing aMvnProject_1_0.id
. -
Constructor Summary
ConstructorDescriptionMvnGoalExecutionStarted_1_0
(long id, String name, String executionId, long projectId, String mojoClassName, long pluginId, @Nullable String buildPhase) -
Method Summary
-
Field Details
-
id
public final long idThe generated, unique ID of this goal execution. Used to link to aMvnGoalExecutionFinished_1_0
event. -
name
The name of this goal. -
executionId
The Maven goal execution ID. Usually human-readable. -
projectId
public final long projectIdThe ID of the project this goal execution is bound to, referencing aMvnProject_1_0.id
. -
mojoClassName
The fully-qualified name of the Mojo class that provides the implementation of this goal. -
pluginId
public final long pluginIdThe ID of the plugin that contributed this goal, referencing aMvnPlugin_1_0.id
. -
buildPhase
@Nullable("when goal execution is invoked directly rather than as part of a build phase") public final @Nullable("when goal execution is invoked directly rather than as part of a build phase") String buildPhaseThe build phase as part of which this goal execution is executed.
-
-
Constructor Details
-
MvnGoalExecutionStarted_1_0
-
-
Method Details