provider
Creates a Provider implementation based on the provided value.
The provider is live and will call the Callable each time its value is queried. The Callable may return null
, in which case the provider is considered to have no value.
This provider is always computed and its value is cached by the Configuration Cache. If this provider is created at configuration time, the Callable may call configuration-time only APIs and capture objects of arbitrary types.
This can be useful when you need to lazily compute some value to use at execution time based on configuration-time only data. For example, you can compute an archive name based on the name of the project:
tasks.register("createArchive") {
def archiveNameProvider = project.provider { project.name + ".jar" }
doLast {
def archiveName = new File(archiveNameProvider.get())
// ... create the archive and put in its contents.
}
}
Content copied to clipboard
Return
The provider. Never returns null.
Since
4.0
Parameters
value
The Callable use to calculate the value.