Class TaskGraphCalculationFinished_1_0

    • Field Detail

      • 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> requestedTaskPaths
        The “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.

        null if 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> excludedTaskPaths
        The “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.

        null if the task graph calculation failed, for plugin version 3.12+.

    • Constructor Detail

      • TaskGraphCalculationFinished_1_0

        public TaskGraphCalculationFinished_1_0​(@Nullable
                                                @Nullable List<String> requestedTaskPaths,
                                                @Nullable
                                                @Nullable List<String> excludedTaskPaths)