Gradle Groovy Plugin
Jump to navigation
Jump to search
External
Internal
Overview
The Groovy plugin introduces a new "groovy" source set, and its corresponding compilation tasks "compileGroovy", "compileTestGroovy", similar to compileJava and compileTestJava. Similarly to the Java plugin, which inherits from a Java Base plugin, the Groovy plugin inherits from Groovy Base plugin.
plugins {
id 'groovy'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:3.0.7'
}
TODO
Gradle in Action Section 11.2.2 Building Groovy Projects.