A TaskContainer
is responsible for managing a set of Task instances.
You can obtain a TaskContainer
instance by calling Project.getTasks, or using the
tasks
property in your build script.
Type | Name and description |
---|---|
Task |
create(Map<String, ?> options) |
Task |
create(Map<String, ?> options, Closure configureClosure) |
Task |
create(String name, Closure configureClosure) |
Task |
create(String name) |
T |
create(String name, Class<T> type) |
T |
create(String name, Class<T> type, Action<? super T> configuration) |
Task |
findByPath(String path) |
Task |
getByPath(String path) |
Task |
replace(String name) |
T |
replace(String name, Class<T> type) |
Methods inherited from class | Name |
---|---|
interface TaskCollection |
getAt, getByName, getByName, matching, matching, whenTaskAdded, whenTaskAdded, withType |
interface NamedDomainObjectSet |
findAll, matching, matching, withType |
interface NamedDomainObjectCollection |
add, addAll, addRule, addRule, findByName, getAsMap, getAt, getByName, getByName, getNamer, getNames, getRules, matching, matching, withType |
interface Set |
add, equals, hashCode, clear, contains, isEmpty, size, toArray, toArray, addAll, iterator, remove, containsAll, removeAll, retainAll |
Creates a Task and adds it to this container. A map of creation options can be passed to this method to control how the task is created. The following options are available:
Option | Description | Default Value |
---|---|---|
{ | The name of the task to create. | None. Must be specified. |
{@value org.gradle.api.Task#TASK_TYPE} | The class of the task to create. | DefaultTask |
{@value org.gradle.api.Task#TASK_ACTION} | The closure or Action to execute when the task executes. See Task#doFirst(Action)#doFirst(Action). | null |
{@value org.gradle.api.Task#TASK_OVERWRITE} | Replace an existing task? | false |
{@value org.gradle.api.Task#TASK_DEPENDS_ON} | The dependencies of the task. See here for more details. | [] |
After the task is added, it is made available as a property of the project, so that you can reference the task by name in your build file. See here for more details.
If a task with the given name already exists in this container and the {@value org.gradle.api.Task#TASK_OVERWRITE}
option is not set to true, an exception is thrown.
options
- The task creation options.
Creates a Task adds it to this container. A map of creation options can be passed to this method to control how the task is created. See create(java.util.Map) for the list of options available. The given closure is used to configure the task before it is returned by this method.
After the task is added, it is made available as a property of the project, so that you can reference the task by name in your build file. See here for more details.
options
- The task creation options.configureClosure
- The closure to use to configure the task.
Creates a Task with the given name adds it to this container. The given closure is used to configure the task before it is returned by this method.
After the task is added, it is made available as a property of the project, so that you can reference the task by name in your build file. See here for more details.
name
- The name of the task to be createdconfigureClosure
- The closure to use to configure the task.
Creates a Task with the given name and adds it to this container.
After the task is added, it is made available as a property of the project, so that you can reference the task by name in your build file. See here for more details.
name
- The name of the task to be created
Creates a Task with the given name and type, and adds it to this container.
After the task is added, it is made available as a property of the project, so that you can reference the task by name in your build file. See here for more details.
name
- The name of the task to be created.type
- The type of task to create.
Creates a Task with the given name and type, configures it with the given action, and adds it to this container.
After the task is added, it is made available as a property of the project, so that you can reference the task by name in your build file. See here for more details.
name
- The name of the task to be created.type
- The type of task to create.configuration
- The action to configure the task with.
Locates a task by path. You can supply a task name, a relative path, or an absolute path. Relative paths are interpreted relative to the project for this container. This method returns null if no task with the given path exists.
path
- the path of the task to be returned
Locates a task by path. You can supply a task name, a relative path, or an absolute path. Relative paths are interpreted relative to the project for this container. This method throws an exception if no task with the given path exists.
path
- the path of the task to be returned
Creates a Task with the given name and adds it to this container, replacing any existing task with the same name.
After the task is added, it is made available as a property of the project, so that you can reference the task by name in your build file. See here for more details.
name
- The name of the task to be created
Creates a Task with the given name and type, and adds it to this container, replacing any existing task of the same name.
After the task is added, it is made available as a property of the project, so that you can reference the task by name in your build file. See here for more details.
name
- The name of the task to be created.type
- The type of task to create.