@@ -99,12 +99,6 @@ subprojects { Project subproject ->
9999 if (details. requested. group == ' org.apache.groovy' && details. requested. name. startsWith(' groovy' )) {
100100 details. useVersion(groovyVersion)
101101 }
102- if (details. requested. group == ' org.springframework' ) {
103- details. useVersion(springVersion)
104- }
105- if (details. requested. group == " org.springframework.boot" ) {
106- details. useVersion(springBootVersion)
107- }
108102 if (details. requested. group == " org.grails" && details. requested. name. contains(" testing-support" )) {
109103 details. useVersion(testingSupportVersion)
110104 }
@@ -118,14 +112,14 @@ subprojects { Project subproject ->
118112
119113 dependencies {
120114 implementation platform(" org.grails:grails-bom:$grailsVersion " )
121- testImplementation " jakarta.annotation:jakarta.annotation-api: $j akartaAnnotationApiVersion "
115+ testImplementation " jakarta.annotation:jakarta.annotation-api"
122116 testImplementation " io.micrometer:micrometer-core:latest.integration"
123- testImplementation " io.projectreactor:reactor-test: $p rojectReactorVersion "
124- testImplementation " org.apache.groovy:groovy-test-junit5: $g roovyVersion "
125- testImplementation( " org.spockframework:spock-core: $s pockVersion " ) { transitive = false }
126- testImplementation " org.junit.jupiter:junit-jupiter-api: $j unitJupiterVersion "
127- testImplementation " org.junit.platform:junit-platform-runner: $j unitJupiterPlatformVersion "
128- testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine: $j unitJupiterVersion "
117+ testImplementation " io.projectreactor:reactor-test"
118+ testImplementation " org.apache.groovy:groovy-test-junit5"
119+ testImplementation " org.spockframework:spock-core"
120+ testImplementation " org.junit.jupiter:junit-jupiter-api"
121+ testImplementation " org.junit.platform:junit-platform-runner"
122+ testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine"
129123 }
130124
131125 apply from : " ${ rootProject.projectDir} /gradle/testVerbose.gradle"
@@ -223,17 +217,18 @@ subprojects { Project subproject ->
223217 }
224218
225219 dependencies {
226- documentation " org.fusesource.jansi:jansi:$jansiVersion "
227- documentation " org.apache.groovy:groovy-dateutil:$groovyVersion "
228- documentation " info.picocli:picocli:$picocliVersion "
229- documentation " com.github.javaparser:javaparser-core:$javaParserCoreVersion "
230-
231- implementation " org.apache.groovy:groovy:$groovyVersion "
232- testImplementation " org.apache.groovy:groovy-test-junit5:$groovyVersion "
233- testImplementation(" org.spockframework:spock-core:$spockVersion " ) { transitive = false }
234- testImplementation " org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion "
235- testImplementation " org.junit.platform:junit-platform-runner:$junitJupiterPlatformVersion "
236- testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion "
220+ documentation platform(" org.grails:grails-bom:$grailsVersion " )
221+ documentation " org.fusesource.jansi:jansi"
222+ documentation " org.apache.groovy:groovy-dateutil"
223+ documentation " info.picocli:picocli"
224+ documentation " com.github.javaparser:javaparser-core"
225+
226+ implementation " org.apache.groovy:groovy"
227+ testImplementation " org.apache.groovy:groovy-test-junit5"
228+ testImplementation " org.spockframework:spock-core"
229+ testImplementation " org.junit.jupiter:junit-jupiter-api"
230+ testImplementation " org.junit.platform:junit-platform-runner"
231+ testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine"
237232 }
238233
239234 apply from : " ${ rootProject.projectDir} /gradle/testVerbose.gradle"
0 commit comments