Gradle - Plugin
About
plugin adds task to Gradle.
A gradle distribution comes out of the box with:
- the base.
- the gradle core task api.
Articles Related
Management
List
Configure
configure<PluginClass> {
message.set("Hi")
greeter.set("Gradle")
}
Example: ShadowJar
configure<ShadowJar> {
archiveBaseName.set("myBaseName")
}