mirror of
https://github.com/gradle/actions.git
synced 2025-04-24 19:59:18 +08:00
- Bump to com.gradle.develocity plugin v3.17.3 - Bump JVM dependencies in sample projects
29 lines
612 B
Groovy
29 lines
612 B
Groovy
plugins {
|
|
id 'groovy'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation gradleTestKit()
|
|
testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0'
|
|
testImplementation('org.spockframework:spock-junit4:2.3-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.17.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|