From 97ce95c4171b4f45619e1762df1ab65a624cca2b Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 4 Aug 2023 15:58:32 +0200 Subject: [PATCH] Polish "Upgrade to MariaDB 3.1.4" See gh-36394 --- spring-boot-project/spring-boot/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/build.gradle b/spring-boot-project/spring-boot/build.gradle index 3921e8b68b..3518ccd5e1 100644 --- a/spring-boot-project/spring-boot/build.gradle +++ b/spring-boot-project/spring-boot/build.gradle @@ -132,7 +132,9 @@ dependencies { } testImplementation("org.hsqldb:hsqldb") testImplementation("org.junit.jupiter:junit-jupiter") - testImplementation("org.mariadb.jdbc:mariadb-java-client") + testImplementation("org.mariadb.jdbc:mariadb-java-client") { + exclude group: "org.slf4j", module: "jcl-over-slf4j" + } testImplementation("org.mockito:mockito-core") testImplementation("org.mockito:mockito-junit-jupiter") testImplementation("org.springframework:spring-context-support")