existing
Idiomatic way of referring to the provider of a well-known element of a collection via a delegate property.
tasks { val jar by existing { ... } }
Parameters
the domain object type
the concrete container type
the configuration action
Idiomatic way of referring to the provider of a well-known element of a collection via a delegate property.
tasks { val jar by existing(Jar::class) }
Parameters
the domain object type
the concrete container type
the domain object type
Idiomatic way of referring to the provider of a well-known element of a collection via a delegate property.
tasks { val jar by existing(Jar::class) { ... } }
Parameters
the domain object type
the concrete container type
the domain object type
the configuration action
Idiomatic way of referring to the provider of a well-known element of a collection via a delegate property.
tasks { val jar by existing }
Parameters
the domain object type
the concrete container type