Interface BuildIdentifier
-
public interface BuildIdentifier
Identifies a Gradle build. The identifier is unique within a Gradle invocation, so for example, each included build will have a different identifier.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getBuildPath()
Absolute build path of the build within the Gradle invocation.java.lang.String
getName()
Deprecated.UsegetBuildPath()
instead.boolean
isCurrentBuild()
Deprecated.ComparegetBuildPath()
with the build path of the current build instead.
-
-
-
Method Detail
-
getBuildPath
java.lang.String getBuildPath()
Absolute build path of the build within the Gradle invocation.- Since:
- 8.2
-
getName
@Deprecated java.lang.String getName()
Deprecated.UsegetBuildPath()
instead.The name of the build.
-
isCurrentBuild
@Deprecated boolean isCurrentBuild()
Deprecated.ComparegetBuildPath()
with the build path of the current build instead.Is this build the one that's currently executing?
-
-