Remove accidental dependency on Spring 5.2.x in spring-r2dbc tests

This commit is contained in:
Sam Brannen 2021-05-12 13:43:36 +02:00
parent 84e56bb5d9
commit e2bf513563
1 changed files with 3 additions and 1 deletions

View File

@ -19,5 +19,7 @@ dependencies {
testCompile(testFixtures(project(":spring-context")))
testCompile("io.projectreactor:reactor-test")
testCompile("io.r2dbc:r2dbc-h2")
testCompile("io.r2dbc:r2dbc-spi-test:0.8.1.RELEASE")
testCompile("io.r2dbc:r2dbc-spi-test:0.8.1.RELEASE") {
exclude group: "org.springframework", module: "spring-jdbc"
}
}