invoke
operator fun <U : Task> String.invoke(type: KClass<U>, configuration: U.() -> Unit): TaskProvider<U>(source)
Configures a task by name, without triggering its creation or configuration, failing if there is no such task.
See also
Task Container. named
Task Provider. configure
Locates a task by name and type, without triggering its creation or configuration, failing if there is no such task.
See also
Task Container. named
Deprecated
Use named(String) instead.
Replace with
named(this)
Content copied to clipboard
Locates a task by name, without triggering its creation or configuration, failing if there is no such task.
See also
Task Container. named