Gradle Groovy Plugin: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 4: Line 4:
* [[Gradle_Plugin_Concepts#Core_Plugins|Gradle Plugins]]
* [[Gradle_Plugin_Concepts#Core_Plugins|Gradle Plugins]]
* [[Groovy#Gradle_Support|Groovy]]
* [[Groovy#Gradle_Support|Groovy]]
=Overview=
<syntaxhighlight lang='groovy'>
plugins {
    id 'groovy'
}
repositories {
    mavenCentral()
}
dependencies {
    implementation 'org.codehaus.groovy:groovy-all:3.0.7'
}
</syntaxhighlight>

Revision as of 03:54, 26 March 2021

External

Internal

Overview

plugins {
    id 'groovy'
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.codehaus.groovy:groovy-all:3.0.7'
}