Package org.gradle.api.tasks
Class GradleBuild
java.lang.Object
org.gradle.api.internal.AbstractTask
org.gradle.api.DefaultTask
org.gradle.api.internal.ConventionTask
org.gradle.api.tasks.GradleBuild
- All Implemented Interfaces:
Comparable<Task>
,org.gradle.api.internal.DynamicObjectAware
,org.gradle.api.internal.IConventionAware
,org.gradle.api.internal.TaskInternal
,Named
,ExtensionAware
,Task
,Configurable<Task>
@DisableCachingByDefault(because="Child Gradle build will do its own caching")
public abstract class GradleBuild
extends org.gradle.api.internal.ConventionTask
Executes a Gradle build.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.gradle.api.Task
Task.Namer
-
Field Summary
Fields inherited from interface org.gradle.api.Task
TASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.The build name to use for the nested build.getDir()
Returns the project directory for the build.Returns the full set of parameters that will be used to execute the build.getTasks()
Returns the tasks that should be executed for this build.void
setBuildFile
(File file) Deprecated.UsesetDir(File)
instead to set the root of the nested build.void
setBuildFile
(Object file) Deprecated.UsesetDir(Object)
instead to set the root of the nested build.void
setBuildName
(String buildName) Sets build name to use for the nested build.void
Sets the project directory for the build.void
Sets the project directory for the build.void
setStartParameter
(StartParameter startParameter) Sets the full set of parameters that will be used to execute the build.void
setTasks
(Collection<String> tasks) Sets the tasks that should be executed for this build.void
Sets the tasks that should be executed for this build.Methods inherited from class org.gradle.api.internal.ConventionTask
conventionMapping, conventionMapping, getConventionMapping
Methods inherited from class org.gradle.api.DefaultTask
compareTo, configure, dependsOn, doFirst, doFirst, doFirst, doLast, doLast, doLast, finalizedBy, getActions, getAnt, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExtensions, getFinalizedBy, getGroup, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOutputs, getPath, getProject, getShouldRunAfter, getState, getTaskDependencies, getTemporaryDir, getTimeout, hasProperty, mustRunAfter, onlyIf, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setFinalizedBy, setGroup, setMustRunAfter, setOnlyIf, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, usesService
Methods inherited from class org.gradle.api.internal.AbstractTask
acceptServiceReferences, appendParallelSafeAction, doNotTrackState, getAsDynamicObject, getConvention, getIdentityPath, getImpliesSubProjects, getLifecycleDependencies, getOnlyIf, getReasonNotToTrackState, getReasonTaskIsIncompatibleWithConfigurationCache, getRequiredServices, getServices, getSharedResources, getStandardOutputCapture, getTaskActions, getTaskIdentity, getTemporaryDirFactory, hasTaskActions, injectIntoNewInstance, isCompatibleWithConfigurationCache, isEnabled, isHasCustomActions, notCompatibleWithConfigurationCache, prependParallelSafeAction, setImpliesSubProjects
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.gradle.api.Task
doNotTrackState, getConvention, notCompatibleWithConfigurationCache
-
Constructor Details
-
GradleBuild
public GradleBuild()
-
-
Method Details
-
getStartParameter
Returns the full set of parameters that will be used to execute the build.- Returns:
- the parameters. Never returns null.
-
setStartParameter
Sets the full set of parameters that will be used to execute the build.- Parameters:
startParameter
- the parameters. Should not be null.
-
getDir
Returns the project directory for the build. Defaults to the project directory.- Returns:
- The project directory. Never returns null.
-
setDir
Sets the project directory for the build.- Parameters:
dir
- The project directory. Should not be null.- Since:
- 4.0
-
setDir
Sets the project directory for the build.- Parameters:
dir
- The project directory. Should not be null.
-
getBuildFile
Deprecated.UsegetDir()
instead to get the root of the nested build. This method will be removed in Gradle 9.0.Returns the build file that should be used for this build. Defaults to "build.gradle" in the project directory.- Returns:
- The build file. May be null.
-
setBuildFile
Deprecated.UsesetDir(File)
instead to set the root of the nested build. This method will be removed in Gradle 9.0.Sets the build file that should be used for this build.- Parameters:
file
- The build file. May be null to use the default build file for the build.- Since:
- 4.0
-
setBuildFile
Deprecated.UsesetDir(Object)
instead to set the root of the nested build. This method will be removed in Gradle 9.0.Sets the build file that should be used for this build.- Parameters:
file
- The build file. May be null to use the default build file for the build.
-
getTasks
Returns the tasks that should be executed for this build.- Returns:
- The sequence. May be empty. Never returns null.
-
setTasks
Sets the tasks that should be executed for this build.- Parameters:
tasks
- The task names. May be empty or null to use the default tasks for the build.- Since:
- 4.0
-
setTasks
Sets the tasks that should be executed for this build.- Parameters:
tasks
- The task names. May be empty or null to use the default tasks for the build.
-
getBuildName
The build name to use for the nested build.If no value is specified, the name of the directory of the build will be used.
- Returns:
- the build name to use for the nested build (or null if the default is to be used)
- Since:
- 6.0
-
setBuildName
Sets build name to use for the nested build.- Parameters:
buildName
- the build name to use for the nested build- Since:
- 6.0
-
getDir()
instead to get the root of the nested build.