task
inline fun <type : Task> Project.task(name: String, noinline configuration: type.() -> Unit): type(source)
Deprecated
Use tasks.register instead
Replace with
tasks.register<type>(name, configuration)
Content copied to clipboard
Creates a Task with the given name and type, configures it with the given configuration action, and adds it to this project tasks container.
Deprecated
Use tasks.register instead
Replace with
tasks.register<type>(name)
Content copied to clipboard
Creates a Task with the given name and type, and adds it to this project tasks container.
See also
Project.getTasks
TaskContainer.create
Deprecated
Use tasks.register instead
Replace with
tasks.register(name, type, configuration)
Content copied to clipboard
Deprecated
Deprecated Gradle API
Kotlin extension function for org.gradle.api.Project.task.
See also
Project.task