Class TaskGraphCalculationFinished_1_0
java.lang.Object
com.gradle.scan.eventmodel.gradle.TaskGraphCalculationFinished_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
- Direct Known Subclasses:
TaskGraphCalculationFinished_1_1
@GradleVersion(since="4.0")
@PluginVersion(since="1.9",
until="1.11")
public class TaskGraphCalculationFinished_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
Emitted when the task graph for a build has been calculated.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe “set” of task paths that were effectively requested to be excluded.The “set” of task paths that were effectively requested for the build. -
Constructor Summary
ConstructorsConstructorDescriptionTaskGraphCalculationFinished_1_0(@Nullable List<String> requestedTaskPaths, @Nullable List<String> excludedTaskPaths) -
Method Summary
-
Field Details
-
requestedTaskPaths
@Nullable("if the task graph calculation failed, for plugin version 3.12+") public final @Nullable("if the task graph calculation failed, for plugin version 3.12+") List<String> requestedTaskPathsThe “set” of task paths that were effectively requested for the build.This does not represent the entire set of tasks to be executed during the build. Instead, it is the full set of tasks that were explicitly requested resolved to. For example, given an invocation of
“gradle build”and many projects with a task of this name, this list will contain the path to the "build" task of each project.The list is sorted alphabetically.
nullif the task graph calculation failed, for plugin version 3.12+. -
excludedTaskPaths
@Nullable("if the task graph calculation failed, for plugin version 3.12+") public final @Nullable("if the task graph calculation failed, for plugin version 3.12+") List<String> excludedTaskPathsThe “set” of task paths that were effectively requested to be excluded.For example, given an invocation of
“gradle -x build”and many projects with a task of this name, this list will contain the path to the "build" task of each project.The list is sorted alphabetically.
nullif the task graph calculation failed, for plugin version 3.12+.
-
-
Constructor Details
-
TaskGraphCalculationFinished_1_0
-
-
Method Details