Class BuildModes_1_0

java.lang.Object
com.gradle.scan.eventmodel.gradle.BuildModes_1_0
All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
Direct Known Subclasses:
BuildModes_1_1

@GradleVersion(since="2.0", until="3.0") @PluginVersion(since="1.0", until="1.2") public class BuildModes_1_0 extends Object implements com.gradle.scan.eventmodel.EventData
An EventData containing details of the Gradle build modes enabled (or not) for the build.

An event stream will contain a single BuildModes_1_0.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final boolean
    Whether configuration on demand mode was enabled for the build.
    final boolean
    Whether the continue on failure flag was set for the build.
    final boolean
    Whether continuous build mode was running for the build.
    final boolean
    Whether the build was run with the Gradle Daemon.
    final boolean
    Whether the dry run flag was set for the build.
    final int
    The maximum number of build workers used to run the build.
    final boolean
    Whether the offline flag was set for the build.
    final boolean
    Whether parallel project execution was enabled for the build.
    final boolean
    Whether the build was set to refresh all dependencies in the dependency cache.
    final boolean
    Whether the build was forced to run all the tasks, ignoring any up-to-date checks.
  • Constructor Summary

    Constructors
    Constructor
    Description
    BuildModes_1_0(boolean refreshDependencies, boolean parallelProjectExecution, boolean rerunTasks, boolean continuous, boolean continueOnFailure, boolean configureOnDemand, boolean daemon, boolean offline, boolean dryRun, int maxWorkers)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

    • BuildModes_1_0

      public BuildModes_1_0(boolean refreshDependencies, boolean parallelProjectExecution, boolean rerunTasks, boolean continuous, boolean continueOnFailure, boolean configureOnDemand, boolean daemon, boolean offline, boolean dryRun, int maxWorkers)
  • Method Details