2022-06-05 03:00:05 +00:00
|
|
|
plugins {
|
|
|
|
id 'groovy'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation gradleTestKit()
|
2022-10-20 12:52:58 +00:00
|
|
|
testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0'
|
|
|
|
testImplementation('org.spockframework:spock-junit4:2.3-groovy-3.0')
|
2022-06-05 04:08:38 +00:00
|
|
|
|
|
|
|
testImplementation ('io.ratpack:ratpack-groovy-test:1.9.0') {
|
|
|
|
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
|
|
|
|
}
|
2022-11-22 23:11:19 +00:00
|
|
|
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.14.1'
|
2022-06-05 04:08:38 +00:00
|
|
|
|
2022-06-05 03:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|