Skip to content

Commit 5675294

Browse files
committed
Fix testing-support includes
1 parent 4fbce9d commit 5675294

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

grails-plugin-databinding/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
exclude module:'grails-core'
1313
exclude module:'async'
1414
exclude module:'gsp'
15+
exclude module:'grails-testing-support'
1516
}
17+
testImplementation project(':grails-testing-support')
1618
}
1719

1820
tasks.named('compileTestGroovy').configure {

grails-test-suite-persistence/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ dependencies {
2929
testRuntimeOnly "org.aspectj:aspectjrt", "org.aspectj:aspectjweaver"
3030

3131
testImplementation project(':grails-async-plugin')
32-
testImplementation "org.grails:grails-gorm-testing-support"
32+
testImplementation "org.grails:grails-gorm-testing-support", {
33+
exclude module:'grails-testing-support'
34+
}
35+
testImplementation project(':grails-testing-support')
3336
}
3437

3538
test {

grails-test-suite-uber/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ dependencies {
2828
testImplementation project(':grails-async-plugin')
2929
testImplementation "org.grails.plugins:gsp"
3030
testImplementation "org.grails:grails-gorm-testing-support"
31-
testImplementation "org.grails:grails-web-testing-support"
31+
testImplementation "org.grails:grails-web-testing-support", {
32+
exclude module:'grails-testing-support'
33+
}
34+
testImplementation project(':grails-testing-support')
3235

3336
testImplementation "com.fasterxml.jackson.core:jackson-databind"
3437
}

grails-test-suite-web/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ dependencies {
2727

2828
testImplementation project(":grails-plugin-converters")
2929
testImplementation "org.grails:grails-datastore-gorm-hibernate5"
30-
testImplementation "org.grails:grails-web-testing-support"
30+
testImplementation "org.grails:grails-web-testing-support", {
31+
exclude module:'grails-testing-support'
32+
}
33+
testImplementation project(':grails-testing-support')
3134
testImplementation "org.grails.plugins:gsp"
3235
testImplementation project(':grails-async-plugin')
3336
testImplementation "org.grails:grails-gorm-testing-support"

0 commit comments

Comments
 (0)