Gradle
    Configuration options for the org.gradle.plugin.devel.plugins.JavaGradlePluginPlugin.
Below is a full configuration example. Since all properties have sensible defaults, typically only selected properties will be configured.
    plugins {
        id 'java-gradle-plugin'
    }
    sourceSets {
        functionalTest
    }
    gradlePlugin {
        testSourceSets project.sourceSets.functionalTest
        plugins {
            helloPlugin {
                id  = 'org.example.hello'
                implementationClass = 'org.example.HelloPlugin'
            }
        }
    }
Content copied to clipboard
Since
2.13
See also
Constructors
Functions
Link copied to clipboard
                  Returns the declared plugins.
Link copied to clipboard
                  Returns the source sets executing the functional tests with TestKit.
Link copied to clipboard
                  Returns the property holding the URL for the plugin's website.
Link copied to clipboard
                  Whether the plugin should automatically configure the publications for the plugins.
Link copied to clipboard
                  Configures the declared plugins.
Link copied to clipboard
                  Provides the source set that compiles the code under test.
Link copied to clipboard
                  Configures whether the plugin should automatically configure the publications for the plugins.
Link copied to clipboard
                  Adds some source sets to the collection which will be using TestKit.
Link copied to clipboard
                  Provides the source sets executing the functional tests with TestKit.