Package org.gradle

Class BuildResult

java.lang.Object
org.gradle.BuildResult

public class BuildResult extends Object

A BuildResult packages up the results of a build executed by a GradleLauncher instance.

  • Constructor Details

    • BuildResult

      public BuildResult(@Nullable Gradle gradle, @Nullable Throwable failure)
    • BuildResult

      public BuildResult(String action, @Nullable Gradle gradle, @Nullable Throwable failure)
  • Method Details

    • getGradle

      @Nullable public Gradle getGradle()
    • getFailure

      @Nullable public Throwable getFailure()
    • getAction

      public String getAction()
      The action performed by this build. Either `Build` or `Configure`.
    • rethrowFailure

      public BuildResult rethrowFailure()

      Rethrows the build failure. Does nothing if there was no build failure.