mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 17:12:51 +00:00
0e3ce37aac
Bump up spock to 2.2-groovy-3.0
29 lines
613 B
Groovy
29 lines
613 B
Groovy
plugins {
|
|
id 'groovy'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation gradleTestKit()
|
|
testImplementation 'org.spockframework:spock-core:2.2-groovy-3.0'
|
|
testImplementation('org.spockframework:spock-junit4:2.2-groovy-3.0')
|
|
|
|
testImplementation ('io.ratpack:ratpack-groovy-test:1.9.0') {
|
|
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
|
|
}
|
|
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.13.4'
|
|
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|