2019-10-31 21:43:47 -04:00
|
|
|
apply plugin : 'groovy'
|
|
|
|
|
|
|
|
dependencies {
|
2022-06-21 14:26:14 -04:00
|
|
|
implementation 'org.codehaus.groovy:groovy:2.4.12'
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2022-06-21 14:26:14 -04:00
|
|
|
testImplementation 'org.spockframework:spock-core:1.0-groovy-2.4', {
|
2019-10-31 21:43:47 -04:00
|
|
|
exclude module : 'groovy-all'
|
|
|
|
}
|
|
|
|
}
|
2024-01-16 05:59:00 -05:00
|
|
|
|
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|