public final class BuildTaskImpl
extends java.lang.Object
implements dev.gradleplugins.runnerkit.BuildTask
BuildResult| Modifier and Type | Method and Description |
|---|---|
dev.gradleplugins.runnerkit.TaskOutcome |
getOutcome()
The outcome of attempting to execute this task.
|
java.lang.String |
getOutput()
The plain output of the task during the build.
|
java.lang.String |
getPath()
The unique path of the task.
|
public java.lang.String getPath()
The task path is a combination of its enclosing project's path and its name.
For example, in multi project build the bar task of the foo project has a path of :foo:bar.
In a single project build, the bar task of the lone project has a path of :bar.
This value corresponds to the value output by Gradle for the task during its normal progress logging.
getPath in interface dev.gradleplugins.runnerkit.BuildTaskpublic dev.gradleplugins.runnerkit.TaskOutcome getOutcome()
getOutcome in interface dev.gradleplugins.runnerkit.BuildTaskpublic java.lang.String getOutput()
getOutput in interface dev.gradleplugins.runnerkit.BuildTask