2018-07-09 23:26:47 +01:00
|
|
|
subprojects {
|
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
|
|
|
dependencies {
|
2020-06-06 14:01:32 +01:00
|
|
|
compile "org.codehaus.groovy:groovy:${groovyVersion}"
|
|
|
|
compile "org.codehaus.groovy:groovy-jsr223:${groovyVersion}"
|
|
|
|
compile "org.codehaus.groovy:groovy-json:${groovyVersion}"
|
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()
|
|
|
|
}
|
|
|
|
}
|