Skip to content

Commit d7e674f

Browse files
committed
Fix init script tests dependencies
1 parent 3e65128 commit d7e674f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sources/test/init-scripts/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@ repositories {
1414

1515
dependencies {
1616
testImplementation gradleTestKit()
17-
testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0'
18-
testImplementation('org.spockframework:spock-junit4:2.3-groovy-3.0')
17+
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
18+
testImplementation('org.spockframework:spock-junit4:2.3-groovy-4.0')
1919

2020
testImplementation ('io.ratpack:ratpack-groovy-test:1.9.0') {
2121
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
2222
}
2323
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.19.2'
24+
25+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
2426
}
2527

2628
test {

0 commit comments

Comments
 (0)