org.gradle.api
Interface Task

All Superinterfaces:
Comparable<Task>
All Known Implementing Classes:
AbstractArchiveTask, AbstractCompile, AbstractCopyTask, AbstractJettyRunTask, AbstractJettyRunWarTask, AbstractReportTask, org.gradle.api.internal.AbstractTask, AntlrTask, AntTarget, Checkstyle, CodeNarc, Compile, org.gradle.api.internal.ConventionTask, Copy, DefaultTask, Delete, DependencyReportTask, Exec, GradleBuild, GroovyCompile, Groovydoc, Javadoc, JavaExec, JettyRun, JettyRunWar, JettyStop, ProcessResources, PropertyReportTask, ScalaCompile, ScalaDoc, SourceTask, Sync, Tar, TaskReportTask, Test, Upload, Wrapper, Zip

public interface Task
extends Comparable<Task>

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.add(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 myType << { task action }
 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) or using the left-shift << operator.

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.

Dependencies

A task may have dependencies on other tasks. Gradle ensures that tasks are executed in dependency order, so that the dependencies of a task are executed before the task is executed. You can add dependencies to a task using dependsOn(Object...) or setDependsOn(Iterable). You can add objects of any of the following types as a dependency:

Using a Task in a Build File

Dynamic Properties

A Task has 3 'scopes' for properties. You can access these properties by name from the build file or by calling the property(String) method.

Dynamic Methods

A Plugin may add methods to a Task using its Convention object.


Field Summary
static String TASK_ACTION
           
static String TASK_DEPENDS_ON
           
static String TASK_DESCRIPTION
           
static String TASK_NAME
           
static String TASK_OVERWRITE
           
static String TASK_TYPE
           
 
Method Summary
 Task captureStandardOutput(LogLevel level)
          Deprecated. Use the LoggingManager returned by getLogging() instead.
 Task configure(Closure configureClosure)
          Applies the statements of the closure against this task object.
 Task deleteAllActions()
          Removes all the actions of this task.
 Task dependsOn(Object... paths)
          Adds the given dependencies to this task.
 boolean dependsOnTaskDidWork()
          Checks if any of the tasks that this task depends on didWork.
 Task disableStandardOutputCapture()
          Deprecated. 
 Task doFirst(Action<? super Task> action)
          Adds the given Action to the beginning of this task's action list.
 Task doFirst(Closure action)
          Adds the given closure to the beginning of this task's action list.
 Task doLast(Action<? super Task> action)
          Adds the given Action to the end of this task's action list.
 Task doLast(Closure action)
          Adds the given closure to the end of this task's action list.
 List<Action<? super Task>> getActions()
          Returns the sequence of Action objects which will be executed by this task, in the order of execution.
 AntBuilder getAnt()
          Returns the AntBuilder for this task.
 Convention getConvention()
          Returns the Convention object for this task.
 Set<Object> getDependsOn()
          Returns the dependencies of this task.
 String getDescription()
          Returns the description of a task.
 boolean getDidWork()
          Checks if the task actually did any work.
 boolean getEnabled()
          Returns if this task is enabled or not.
 String getGroup()
          Returns the task group which this task belongs to.
 TaskInputs getInputs()
          Returns the inputs of this task.
 Logger getLogger()
          Returns the logger for this task.
 LoggingManager getLogging()
          Returns the LoggingManager which can be used to control the logging level and standard output/error capture for this task.
 String getName()
          Returns the name of this task.
 TaskOutputs getOutputs()
          Returns the outputs of this task.
 String getPath()
          Returns the path of the task, which is a fully qualified name for the task.
 Project getProject()
          Returns the Project which this task belongs to.
 TaskState getState()
          Returns the execution state of this task.
 TaskDependency getTaskDependencies()
          Returns a TaskDependency which contains all the tasks that this task depends on.
 File getTemporaryDir()
          Returns a directory which this task can use to write temporary files to.
 boolean hasProperty(String propertyName)
          Determines if this task has the given property.
 Task leftShift(Closure action)
          Adds the given closure to the end of this task's action list.
 void onlyIf(Closure onlyIfClosure)
          Execute the task only if the given closure returns true.
 void onlyIf(Spec<? super Task> onlyIfSpec)
          Execute the task only if the given spec is satisfied.
 Object property(String propertyName)
          Returns the value of the given property of this task.
 void setActions(List<Action<? super Task>> actions)
          Sets the sequence of Action objects which will be executed by this task.
 void setDependsOn(Iterable<?> dependsOnTasks)
          Sets the dependencies of this task.
 void setDescription(String description)
          Adds a text to describe what the task does to the user of the build.
 void setEnabled(boolean enabled)
          Set the enabled state of a task.
 void setGroup(String group)
          Sets the task group which this task belongs to.
 void setOnlyIf(Closure onlyIfClosure)
          Execute the task only if the given closure returns true.
 void setOnlyIf(Spec<? super Task> onlyIfSpec)
          Execute the task only if the given spec is satisfied.
 void setProperty(String name, Object value)
          Sets a property of this task.
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Field Detail

TASK_NAME

static final String TASK_NAME
See Also:
Constant Field Values

TASK_DESCRIPTION

static final String TASK_DESCRIPTION
See Also:
Constant Field Values

TASK_TYPE

static final String TASK_TYPE
See Also:
Constant Field Values

TASK_DEPENDS_ON

static final String TASK_DEPENDS_ON
See Also:
Constant Field Values

TASK_OVERWRITE

static final String TASK_OVERWRITE
See Also:
Constant Field Values

TASK_ACTION

static final String TASK_ACTION
See Also:
Constant Field Values
Method Detail

getName

String getName()

Returns the name of this task. The name uniquely identifies the task within its Project.

Returns:
The name of the task. Never returns null.

getProject

Project getProject()

Returns the Project which this task belongs to.

Returns:
The project this task belongs to. Never returns null.

getActions

List<Action<? super Task>> getActions()

Returns the sequence of Action objects which will be executed by this task, in the order of execution.

Returns:
The task actions in the order they are executed. Returns an empty list if this task has no actions.

setActions

void setActions(List<Action<? super Task>> actions)

Sets the sequence of Action objects which will be executed by this task.

Parameters:
actions - The actions.

getTaskDependencies

TaskDependency getTaskDependencies()

Returns a TaskDependency which contains all the tasks that this task depends on.

Returns:
The dependencies of this task. Never returns null.

getDependsOn

Set<Object> getDependsOn()

Returns the dependencies of this task.

Returns:
The dependencies of this task. Returns an empty set if this task has no dependencies.

setDependsOn

void setDependsOn(Iterable<?> dependsOnTasks)

Sets the dependencies of this task. See here for a description of the types of objects which can be used as task dependencies.

Parameters:
dependsOnTasks - The set of task paths.

dependsOn

Task dependsOn(Object... paths)

Adds the given dependencies to this task. See here for a description of the types of objects which can be used as task dependencies.

Parameters:
paths - The dependencies to add to this task.
Returns:
the task object this method is applied to

onlyIf

void onlyIf(Closure onlyIfClosure)

Execute the task only if the given closure returns true. The closure will be evaluated at task execution time, not during configuration. The closure will be passed a single parameter, this task. If the closure returns false, the task will be skipped.

You may add multiple such predicates. The task is skipped if any of the predicates return false.

Typical usage:myTask.onlyIf{ dependsOnTaskDidWork() }

Parameters:
onlyIfClosure - code to execute to determine if task should be run

onlyIf

void onlyIf(Spec<? super Task> onlyIfSpec)

Execute the task only if the given spec is satisfied. The spec will be evaluated at task execution time, not during configuration. If the Spec is not satisfied, the task will be skipped.

You may add multiple such predicates. The task is skipped if any of the predicates return false.

Typical usage (from Java):

myTask.onlyIf(new Spec() {
    boolean isSatisfiedBy(Task task) {
       return task.dependsOnTaskDidWork();
    }
 });
 

Parameters:
onlyIfSpec - specifies if a task should be run

setOnlyIf

void setOnlyIf(Closure onlyIfClosure)

Execute the task only if the given closure returns true. The closure will be evaluated at task execution time, not during configuration. The closure will be passed a single parameter, this task. If the closure returns false, the task will be skipped.

The given predicate replaces all such predicates for this task.

Parameters:
onlyIfClosure - code to execute to determine if task should be run

setOnlyIf

void setOnlyIf(Spec<? super Task> onlyIfSpec)

Execute the task only if the given spec is satisfied. The spec will be evaluated at task execution time, not during configuration. If the Spec is not satisfied, the task will be skipped.

The given predicate replaces all such predicates for this task.

Parameters:
onlyIfSpec - specifies if a task should be run

getState

TaskState getState()
Returns the execution state of this task. This provides information about the execution of this task, such as whether it has executed, been skipped, has failed, etc.

Returns:
The execution state of this task. Never returns null.

getDidWork

boolean getDidWork()

Checks if the task actually did any work. Even if a Task executes, it may determine that it has nothing to do. For example, the Compile task may determine that source files have not changed since the last time a the task was run.

Returns:
true if this task did any work

getPath

String getPath()

Returns the path of the task, which is a fully qualified name for the task. The path of a task is the path of its Project plus the name of the task, separated by :.

Returns:
the path of the task, which is equal to the path of the project plus the name of the task.

doFirst

Task doFirst(Action<? super Task> action)

Adds the given Action to the beginning of this task's action list.

Parameters:
action - The action to add
Returns:
the task object this method is applied to

doFirst

Task doFirst(Closure action)

Adds the given closure to the beginning of this task's action list. The closure is passed this task as a parameter when executed.

Parameters:
action - The action closure to execute.
Returns:
This task.

doLast

Task doLast(Action<? super Task> action)

Adds the given Action to the end of this task's action list.

Parameters:
action - The action to add.
Returns:
the task object this method is applied to

doLast

Task doLast(Closure action)

Adds the given closure to the end of this task's action list. The closure is passed this task as a parameter when executed.

Parameters:
action - The action closure to execute.
Returns:
This task.

leftShift

Task leftShift(Closure action)

Adds the given closure to the end of this task's action list. The closure is passed this task as a parameter when executed. You can call this method from your build script using the << left shift operator.

Parameters:
action - The action closure to execute.
Returns:
This task.

deleteAllActions

Task deleteAllActions()

Removes all the actions of this task.

Returns:
the task object this method is applied to

getEnabled

boolean getEnabled()

Returns if this task is enabled or not.

See Also:
setEnabled(boolean)

setEnabled

void setEnabled(boolean enabled)

Set the enabled state of a task. If a task is disabled none of the its actions are executed. Note that disabling a task does not prevent the execution of the tasks which this task depends on.

Parameters:
enabled - The enabled state of this task (true or false)

configure

Task configure(Closure configureClosure)

Applies the statements of the closure against this task object. The delegate object for the closure is set to this task.

Parameters:
configureClosure - The closure to be applied (can be null).
Returns:
This task

getAnt

AntBuilder getAnt()

Returns the AntBuilder for this task. You can use this in your build file to execute ant tasks.

Returns:
The AntBuilder

getLogger

Logger getLogger()

Returns the logger for this task. You can use this in your build file to write log messages.

Returns:
The logger. Never returns null.

getLogging

LoggingManager getLogging()
Returns the LoggingManager which can be used to control the logging level and standard output/error capture for this task. By default, System.out is redirected to the Gradle logging system at the QUIET log level, and System.err is redirected at the ERROR log level.

Returns:
the LoggingManager. Never returns null.

disableStandardOutputCapture

@Deprecated
Task disableStandardOutputCapture()
Deprecated. 

Disables redirection of standard output during task execution. By default redirection is enabled.

Returns:
this
See Also:
captureStandardOutput(org.gradle.api.logging.LogLevel)

captureStandardOutput

@Deprecated
Task captureStandardOutput(LogLevel level)
Deprecated. Use the LoggingManager returned by getLogging() instead.

Enables redirection of standard output during task execution to the logging system. By default redirection is enabled and the task output is redirected to the QUIET level. System.err is always redirected to the ERROR level.

Parameters:
level - The level standard out should be logged to.
Returns:
this
See Also:
disableStandardOutputCapture()

property

Object property(String propertyName)
                throws MissingPropertyException
Returns the value of the given property of this task. This method locates a property as follows:

  1. If this task object has a property with the given name, return the value of the property.
  2. If this task has an additional property with the given name, return the value of the property.
  3. If this task's convention object has a property with the given name, return the value of the property.
  4. If not found, throw MissingPropertyException

Parameters:
propertyName - The name of the property.
Returns:
The value of the property, possibly null.
Throws:
MissingPropertyException - When the given property is unknown.

hasProperty

boolean hasProperty(String propertyName)

Determines if this task has the given property. See here for details of the properties which are available for a task.

Parameters:
propertyName - The name of the property to locate.
Returns:
True if this project has the given property, false otherwise.

setProperty

void setProperty(String name,
                 Object value)

Sets a property of this task. This method searches for a property with the given name in the following locations, and sets the property on the first location where it finds the property.

  1. The task object itself. For example, the enabled project property.
  2. The task's convention object.
  3. The task's additional properties.

If the property is not found in any of these locations, it is added to the project's additional properties.

Parameters:
name - The name of the property
value - The value of the property

getConvention

Convention getConvention()

Returns the Convention object for this task. A Plugin can use the convention object to contribute properties and methods to this task.

Returns:
The convention object. Never returns null.

getDescription

String getDescription()
Returns the description of a task.

See Also:
setDescription(String)

setDescription

void setDescription(String description)
Adds a text to describe what the task does to the user of the build. The description will be displayed when gradle -t is called.

Parameters:
description - The description of the task. Might be null.

getGroup

String getGroup()
Returns the task group which this task belongs to. The task group is used in reports and user interfaces to group related tasks together when presenting a list of tasks to the user.

Returns:
The task group for this task. Might be null.

setGroup

void setGroup(String group)
Sets the task group which this task belongs to. The task group is used in reports and user interfaces to group related tasks together when presenting a list of tasks to the user.

Parameters:
group - The task group for this task. Can be null.

dependsOnTaskDidWork

boolean dependsOnTaskDidWork()

Checks if any of the tasks that this task depends on didWork.

Returns:
true if any task this task depends on did work.

getInputs

TaskInputs getInputs()

Returns the inputs of this task.

Returns:
The inputs. Never returns null.

getOutputs

TaskOutputs getOutputs()

Returns the outputs of this task.

Returns:
The outputs. Never returns null.

getTemporaryDir

File getTemporaryDir()

Returns a directory which this task can use to write temporary files to. Each task instance is provided with a separate temporary directory. There are no guarantees that the contents of this directory will be kept beyond the execution of the task.

Returns:
The directory. Never returns null. The directory will already exist.