From d9dfb019c49682fdf420ac1d1f14061821ae746f Mon Sep 17 00:00:00 2001 From: Benjamin Benoist Date: Wed, 24 Jan 2024 16:26:21 +0100 Subject: [PATCH] Bump mysql-connector-j to 8.3.0 (#857) --- project/Dependencies.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 47fabfb20..8ab924d8f 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -35,7 +35,7 @@ object Dependencies { val uaParser = "1.5.4" val snakeYaml = "1.33" val postgresDriver = "42.5.2" - val mysqlConnector = "8.0.29" + val mysqlConnector = "8.3.0" val hikariCP = "5.0.1" val jaywayJsonpath = "2.7.0" val jsonsmart = "2.4.10" @@ -113,7 +113,7 @@ object Dependencies { val snakeYaml = "org.yaml" % "snakeyaml" % V.snakeYaml val uaParser = "com.github.ua-parser" % "uap-java" % V.uaParser val postgresDriver = "org.postgresql" % "postgresql" % V.postgresDriver - val mysqlConnector = "mysql" % "mysql-connector-java" % V.mysqlConnector + val mysqlConnector = "com.mysql" % "mysql-connector-j" % V.mysqlConnector val hikariCP = ("com.zaxxer" % "HikariCP" % V.hikariCP) .exclude("org.slf4j", "slf4j-api") val jaywayJsonpath = "com.jayway.jsonpath" % "json-path" % V.jaywayJsonpath