Interface Task
- All Superinterfaces:
Comparable<Task>
,ExtensionAware
,Named
- All Known Subinterfaces:
ObjectFilesToBinary
- All Known Implementing Classes:
AbstractArchiveTask
,AbstractCodeQualityTask
,AbstractCompile
,AbstractConfigurationReportTask
,AbstractCopyTask
,AbstractDependencyReportTask
,AbstractExecTask
,AbstractLinkTask
,AbstractNativeCompileTask
,AbstractNativePCHCompileTask
,AbstractNativeSourceCompileTask
,AbstractProjectBasedReportTask
,AbstractPublishToMaven
,AbstractReportTask
,AbstractScalaCompile
,org.gradle.api.internal.AbstractTask
,AbstractTestTask
,AntlrTask
,AntTarget
,ArtifactTransformsReportTask
,Assemble
,BuildEnvironmentReportTask
,CCompile
,Checkstyle
,CodeNarc
,ComponentReport
,ConventionReportTask
,org.gradle.api.internal.ConventionTask
,Copy
,CppCompile
,CppPreCompiledHeaderCompile
,CPreCompiledHeaderCompile
,CreateStartScripts
,CreateStartScripts
,CreateStaticLibrary
,DefaultTask
,Delete
,DependencyInsightReportTask
,DependencyReportTask
,DependentComponentsReport
,Ear
,Exec
,ExtractSymbols
,GenerateBuildDashboard
,GenerateCUnitLauncher
,GenerateEclipseClasspath
,GenerateEclipseJdt
,GenerateEclipseProject
,GenerateEclipseWtpComponent
,GenerateEclipseWtpFacet
,GenerateFiltersFileTask
,GenerateIdeaModule
,GenerateIdeaProject
,GenerateIdeaWorkspace
,GenerateIvyDescriptor
,GenerateMavenPom
,GenerateModuleMetadata
,GeneratePluginDescriptors
,GenerateProjectFileTask
,GenerateSchemeFileTask
,GenerateSolutionFileTask
,GenerateSwiftPackageManagerManifest
,GenerateWorkspaceSettingsFileTask
,GenerateXcodeProjectFileTask
,GenerateXcodeWorkspaceFileTask
,GeneratorTask
,GradleBuild
,GroovyCompile
,Groovydoc
,HtmlDependencyReportTask
,InitBuild
,InstallExecutable
,InstallXCTestBundle
,JacocoBase
,JacocoCoverageVerification
,JacocoReport
,JacocoReportBase
,Jar
,Jar
,JavaCompile
,Javadoc
,JavaExec
,LinkExecutable
,LinkMachOBundle
,LinkSharedLibrary
,ModelReport
,ObjectiveCCompile
,ObjectiveCppCompile
,ObjectiveCppPreCompiledHeaderCompile
,ObjectiveCPreCompiledHeaderCompile
,OutgoingVariantsReportTask
,PluginUnderTestMetadata
,Pmd
,PrefixHeaderFileGenerateTask
,ProcessResources
,ProjectBasedReportTask
,ProjectReportTask
,PropertiesGeneratorTask
,PropertyListGeneratorTask
,PropertyReportTask
,PublishToIvyRepository
,PublishToMavenLocal
,PublishToMavenRepository
,ResolvableConfigurationsReportTask
,RunTestExecutable
,ScalaCompile
,ScalaDoc
,Sign
,SourceTask
,StripSymbols
,SwiftCompile
,Sync
,Tar
,TaskReportTask
,Test
,TestReport
,UnexportMainSymbol
,UpdateDaemonJvm
,ValidatePlugins
,War
,WindowsResourceCompile
,Wrapper
,WriteProperties
,XCTest
,XmlGeneratorTask
,Zip
A Task
represents a single atomic piece of work for a build, such as compiling classes or generating
javadoc.
Each task belongs to a Project
. You can use the various methods on TaskContainer
to create and lookup task instances. For example, TaskContainer.create(String)
creates an empty task with the given name. You can also use the
task
keyword in your build file:
task myTask task myTask { configure closure } task myTask(type: SomeType) task myTask(type: SomeType) { configure closure }
Each task has a name, which can be used to refer to the task within its owning project, and a fully qualified path, which is unique across all tasks in all projects. The path is the concatenation of the owning project's path and the task's name. Path elements are separated using the ":" character.
Task Actions
A Task
is made up of a sequence of Action
objects. When the task is executed, each of the
actions is executed in turn, by calling Action.execute(T)
. You can add actions to a task by calling doFirst(Action)
or doLast(Action)
.
Groovy closures can also be used to provide a task action. When the action is executed, the closure is called with
the task as parameter. You can add action closures to a task by calling doFirst(groovy.lang.Closure)
or
doLast(groovy.lang.Closure)
.
There are 2 special exceptions which a task action can throw to abort execution and continue without failing the
build. A task action can abort execution of the action and continue to the next action of the task by throwing a
StopActionException
. A task action can abort execution of the task and continue to the
next task by throwing a StopExecutionException
. Using these exceptions allows you to
have precondition actions which skip execution of the task, or part of the task, if not true.
Task Dependencies and Task Ordering
A task may have dependencies on other tasks or might be scheduled to always run after another task. Gradle ensures that all task dependencies and ordering rules are honored when executing tasks, so that the task is executed after all of its dependencies and any "must run after" tasks have been executed.
Dependencies to a task are controlled using dependsOn(Object...)
or setDependsOn(Iterable)
,
and mustRunAfter(Object...)
, setMustRunAfter(Iterable)
, shouldRunAfter(Object...)
and
setShouldRunAfter(Iterable)
are used to specify ordering between tasks. You can use objects of any of
the following types to specify dependencies and ordering:
- A
String
,CharSequence
orgroovy.lang.GString
task path or name. A relative path is interpreted relative to the task'sProject
. This allows you to refer to tasks in other projects. These task references will not cause task creation. - A
Task
. - A
TaskDependency
object. - A
TaskReference
object. - A
Buildable
object. - A
RegularFileProperty
orDirectoryProperty
. - A
Provider
object. May contain any of the types listed here. - A
Iterable
,Collection
,Map
or array. May contain any of the types listed here. The elements of the iterable/collection/map/array are recursively converted to tasks. - A
Callable
. Thecall()
method may return any of the types listed here. Its return value is recursively converted to tasks. Anull
return value is treated as an empty collection. - A Groovy
Closure
or Kotlin function. The closure may take aTask
as parameter. The closure or function may return any of the types listed here. Its return value is recursively converted to tasks. Anull
return value is treated as an empty collection. - Anything else is treated as an error.
Using a Task in a Build File
Dynamic Properties
A Task
has 4 'scopes' for properties. You can access these properties by name from the build file or by
calling the property(String)
method. You can change the value of these properties by calling the setProperty(String, Object)
method.
- The
Task
object itself. This includes any property getters and setters declared by theTask
implementation class. The properties of this scope are readable or writable based on the presence of the corresponding getter and setter methods. - The extensions added to the task by plugins. Each extension is available as a read-only property with the same name as the extension.
- The extra properties of the task. Each task object maintains a map of additional properties. These are arbitrary name -> value pairs which you can use to dynamically add properties to a task object. Once defined, the properties of this scope are readable and writable.
Parallel Execution
By default, tasks are not executed in parallel unless a task is waiting on asynchronous work and another task (which
is not dependent) is ready to execute.
Parallel execution can be enabled by the --parallel
flag when the build is initiated.
In parallel mode, the tasks of different projects (i.e. in a multi project build) are able to be executed in parallel.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.gradle.api.Named
Named.Namer
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionApplies the statements of the closure against this task object.Adds the given dependencies to this task.Adds the given closure to the beginning of this task's action list.Adds the givenAction
to the beginning of this task's action list.Adds the givenAction
to the beginning of this task's action list.Adds the given closure to the end of this task's action list.Adds the givenAction
to the end of this task's action list.Adds the givenAction
to the end of this task's action list.void
doNotTrackState
(String reasonNotToTrackState) Do not track the state of the task.finalizedBy
(Object... paths) Adds the given finalizer tasks for this task.Returns the sequence ofAction
objects which will be executed by this task, in the order of execution.getAnt()
Returns theAntBuilder
for this task.Returns the dependencies of this task.@Nullable String
Returns the description of this task.Returns the destroyables of this task.boolean
Checks if the task actually did any work.boolean
Returns if this task is enabled or not.Returns tasks that finalize this task.@Nullable String
getGroup()
Returns the task group which this task belongs to.Returns the inputs of this task.Returns the local state of this task.Returns the logger for this task.Returns theLoggingManager
which can be used to receive logging and to control the standard output/error capture for this task.Returns tasks that this task must run after.getName()
Returns the name of this task.Returns the outputs of this task.getPath()
Returns the path of the task, which is a fully qualified name for the task.Returns theProject
which this task belongs to.Returns tasks that this task should run after.getState()
Returns the execution state of this task.Returns aTaskDependency
which contains all the tasks that this task depends on.Returns a directory which this task can use to write temporary files to.