2018-07-09 23:26:47 +01:00
|
|
|
subprojects {
|
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
|
|
|
dependencies {
|
2020-06-01 13:40:28 +01:00
|
|
|
compile 'org.codehaus.groovy:groovy:3.0.4'
|
|
|
|
compile 'org.codehaus.groovy:groovy-jsr223:3.0.4'
|
|
|
|
compile 'org.codehaus.groovy:groovy-json:3.0.4'
|
2018-07-09 23:26:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
compileGroovy {
|
2020-06-05 14:32:54 +01:00
|
|
|
groovyOptions.optimizationOptions.indy = false
|
2020-05-02 10:53:00 -04:00
|
|
|
sourceCompatibility = project.sourceCompatibility
|
|
|
|
targetCompatibility = project.targetCompatibility
|
|
|
|
options.compilerArgs += project.compilerArgs
|
|
|
|
options.deprecation = true
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
}
|
|
|
|
|
|
|
|
compileJava {
|
|
|
|
sourceCompatibility = project.sourceCompatibility
|
|
|
|
targetCompatibility = project.targetCompatibility
|
|
|
|
options.compilerArgs += project.compilerArgs
|
|
|
|
options.deprecation = true
|
|
|
|
options.encoding = 'UTF-8'
|
2018-07-09 23:26:47 +01:00
|
|
|
}
|
|
|
|
|
2018-07-09 21:17:20 +01:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|