33 lines
749 B
Groovy
33 lines
749 B
Groovy
apply plugin: 'groovy'
|
|
|
|
dependencies {
|
|
implementation "org.codehaus.groovy:groovy:${project.property('groovy.version')}"
|
|
}
|
|
|
|
compileGroovy {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
compileTestGroovy {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
tasks.withType(GroovyCompile) {
|
|
options.compilerArgs
|
|
if (!options.compilerArgs.contains("-processor")) {
|
|
options.compilerArgs << '-proc:none'
|
|
}
|
|
}
|
|
|
|
task groovydocJar(type: Jar) {
|
|
dependsOn groovydoc
|
|
from groovydoc.destinationDir
|
|
archiveClassifier.set('groovydoc')
|
|
}
|
|
tasks.assemble.dependsOn(tasks.groovydocJar)
|
|
|
|
artifacts {
|
|
archives groovydocJar
|
|
}
|