Gradle - Plugin

About

plugin adds task to Gradle.

A gradle distribution comes out of the box with:

Management

List

https://plugins.gradle.org/

Configure

Gradle - Kotlin DSL (Ref)

configure<PluginClass> {
    message.set("Hi")
    greeter.set("Gradle")
}

Example: ShadowJar

configure<ShadowJar> {
  archiveBaseName.set("myBaseName")
}

Documentation





Discover More
Gradle - Base Plugin

The base plugin is a plugin that comes with a default Gradle installation base plugin
Gradle - Property plugin

plugin properties are property of a plugin or DSL style or
Gradle - Task

A build process execute a graph of tasks. Task may just be: container (lifecycle task) or provided by plugin In execution with the wrapper of the project Tasks themselves consist of:...



Share this page:
Follow us:
Task Runner