graphics/gradle/compile/groovy.gradle

28 lines
659 B
Groovy
Raw Normal View History

2021-02-25 17:01:47 +01:00
apply plugin: 'groovy'
dependencies {
2022-04-29 17:14:15 +02:00
implementation "org.apache.groovy:groovy:${project.property('groovy.version')}"
2021-02-25 17:01:47 +01:00
}
compileGroovy {
2022-04-29 17:14:15 +02:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2021-02-25 17:01:47 +01:00
}
compileTestGroovy {
2022-04-29 17:14:15 +02:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2021-02-25 17:01:47 +01:00
}
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('javadoc')
}