From e2bf513563240bebd67addf16c781c8d64fc9770 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 12 May 2021 13:43:36 +0200 Subject: [PATCH] Remove accidental dependency on Spring 5.2.x in spring-r2dbc tests --- spring-r2dbc/spring-r2dbc.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spring-r2dbc/spring-r2dbc.gradle b/spring-r2dbc/spring-r2dbc.gradle index cfac71726e5..8fd50bf2e78 100644 --- a/spring-r2dbc/spring-r2dbc.gradle +++ b/spring-r2dbc/spring-r2dbc.gradle @@ -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" + } }