Skip to content

Commit 939a109

Browse files
committed
Revert dependencies scope changes
1 parent 93fd42c commit 939a109

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ subprojects {
132132
documentation "org.codehaus.groovy:groovy-dateutil:$groovyVersion"
133133
documentation 'info.picocli:picocli:3.8.0'
134134

135-
implementation group: 'org.codehaus.groovy', name: 'groovy', version: groovyVersion
136-
testImplementation group: 'org.codehaus.groovy', name: 'groovy-test-junit5', version: groovyVersion
137-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.6.0"
138-
testImplementation "org.junit.platform:junit-platform-runner:1.6.0"
135+
compile group: 'org.codehaus.groovy', name: 'groovy', version: groovyVersion
136+
testCompile group: 'org.codehaus.groovy', name: 'groovy-test-junit5', version: groovyVersion
137+
testCompile "org.junit.jupiter:junit-jupiter-api:5.6.0"
138+
testCompile "org.junit.platform:junit-platform-runner:1.6.0"
139139
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.6.0"
140140

141-
testImplementation(spockDependency) {
141+
testCompile(spockDependency) {
142142
exclude group: 'junit', module: 'junit-dep'
143143
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
144144
exclude group: 'org.hamcrest', module: 'hamcrest-core'
@@ -147,13 +147,13 @@ subprojects {
147147
}
148148

149149
if (project.name == "grails-datastore-gorm-tck") {
150-
implementation(spockDependency, {
150+
compile(spockDependency, {
151151
exclude group: 'junit', module: 'junit-dep'
152152
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
153153
exclude group: 'org.hamcrest', module: 'hamcrest-core'
154154
transitive = false
155155
})
156-
implementation "org.junit.platform:junit-platform-runner:1.6.0"
156+
compile "org.junit.platform:junit-platform-runner:1.6.0"
157157
}
158158
}
159159

0 commit comments

Comments
 (0)