From d7e674f97b03ec86a7d6f688bd66c45269b35bf1 Mon Sep 17 00:00:00 2001 From: Jerome Prinet Date: Tue, 5 Aug 2025 11:54:53 +0200 Subject: [PATCH] Fix init script tests dependencies --- sources/test/init-scripts/build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sources/test/init-scripts/build.gradle b/sources/test/init-scripts/build.gradle index a919400f..78a75f6b 100644 --- a/sources/test/init-scripts/build.gradle +++ b/sources/test/init-scripts/build.gradle @@ -14,13 +14,15 @@ repositories { dependencies { testImplementation gradleTestKit() - testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0' - testImplementation('org.spockframework:spock-junit4:2.3-groovy-3.0') + testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0' + testImplementation('org.spockframework:spock-junit4:2.3-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.19.2' + + testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } test {