2022-06-04 21:00:05 -06:00
|
|
|
plugins {
|
|
|
|
|
id 'groovy'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
java {
|
|
|
|
|
toolchain {
|
|
|
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
testImplementation gradleTestKit()
|
2025-08-05 11:54:53 +02:00
|
|
|
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
|
|
|
|
|
testImplementation('org.spockframework:spock-junit4:2.3-groovy-4.0')
|
2022-06-04 22:08:38 -06:00
|
|
|
|
|
|
|
|
testImplementation ('io.ratpack:ratpack-groovy-test:1.9.0') {
|
|
|
|
|
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
|
|
|
|
|
}
|
2025-09-02 18:45:33 +00:00
|
|
|
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.20.0'
|
2025-08-05 11:54:53 +02:00
|
|
|
|
|
|
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
2022-06-04 21:00:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
test {
|
|
|
|
|
useJUnitPlatform()
|
|
|
|
|
}
|