Browse Source

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

pull/26940/head
Sam Brannen 5 years ago
parent
commit
e2bf513563
  1. 4
      spring-r2dbc/spring-r2dbc.gradle

4
spring-r2dbc/spring-r2dbc.gradle

@ -19,5 +19,7 @@ dependencies { @@ -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"
}
}

Loading…
Cancel
Save