From 00a61cd6cf2869088b8a0fd6065aebac9695b6e7 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sat, 5 Nov 2022 15:58:18 +0900 Subject: [PATCH] Downgrade and pin MariaDB JDBC driver version (#3189) --- .scala-steward.conf | 1 + build.sbt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.scala-steward.conf b/.scala-steward.conf index faff50b6b..731cb1176 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -6,4 +6,5 @@ updates.pin = [ { groupId = "org.eclipse.jetty", version = "9." } { groupId = "org.eclipse.jgit", version = "5." } { groupId = "com.zaxxer", version = "4." } + { groupId = "org.mariadb.jdbc", version = "2." } ] diff --git a/build.sbt b/build.sbt index dac4f3af2..7a93f4a9e 100644 --- a/build.sbt +++ b/build.sbt @@ -46,7 +46,7 @@ libraryDependencies ++= Seq( "com.github.takezoe" %% "blocking-slick-32" % "0.0.12" cross CrossVersion.for3Use2_13, "com.novell.ldap" % "jldap" % "2009-10-07", "com.h2database" % "h2" % "1.4.199", - "org.mariadb.jdbc" % "mariadb-java-client" % "3.0.8", + "org.mariadb.jdbc" % "mariadb-java-client" % "2.7.4", "org.postgresql" % "postgresql" % "42.5.0", "ch.qos.logback" % "logback-classic" % "1.2.11", "com.zaxxer" % "HikariCP" % "4.0.3" exclude ("org.slf4j", "slf4j-api"),