mirror of
https://github.com/gradle/actions.git
synced 2026-01-13 17:26:03 +08:00
Bumps the gradle group with 1 update in the /sources/test/init-scripts directory: [org.spockframework:spock-core](https://github.com/spockframework/spock). Updates `org.spockframework:spock-core` from 2.3-groovy-4.0 to 2.4-groovy-5.0 - [Release notes](https://github.com/spockframework/spock/releases) - [Changelog](https://github.com/spockframework/spock/blob/master/docs/release_notes.adoc) - [Commits](https://github.com/spockframework/spock/commits) Updates `org.spockframework:spock-junit4` from 2.3-groovy-4.0 to 2.4-groovy-5.0 - [Release notes](https://github.com/spockframework/spock/releases) - [Changelog](https://github.com/spockframework/spock/blob/master/docs/release_notes.adoc) - [Commits](https://github.com/spockframework/spock/commits) --- updated-dependencies: - dependency-name: org.spockframework:spock-core dependency-version: 2.4-groovy-5.0 dependency-type: direct:production dependency-group: gradle - dependency-name: org.spockframework:spock-junit4 dependency-version: 2.4-groovy-5.0 dependency-type: direct:production dependency-group: gradle ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
678 B
Groovy
31 lines
678 B
Groovy
plugins {
|
|
id 'groovy'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation gradleTestKit()
|
|
testImplementation 'org.spockframework:spock-core:2.4-groovy-4.0'
|
|
testImplementation('org.spockframework:spock-junit4:2.4-groovy-4.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.20.1'
|
|
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|