From 0013ba415ccd2a3f41800a6522d7bcd27ae9078c Mon Sep 17 00:00:00 2001 From: spinnakerbot Date: Thu, 13 Jun 2024 09:33:43 -0400 Subject: [PATCH] chore(dependencies): Autobump orcaVersion (#1041) * chore(dependencies): Autobump orcaVersion * refactor(mysql): update mysql connector coordinate during upgrade to spring boot 2.7.x In spring boot 2.7.8 onwards mysql connector coordinate `mysql:mysql-connector-java` has been removed and only `com.mysql:mysql-connector-j` coordinate exist. https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.7-Release-Notes#mysql-jdbc-driver So, updating the mysql connector coordinate as `com.mysql:mysql-connector-j` with spring boot upgrade to 2.7.18. https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-dependencies/2.7.18/spring-boot-dependencies-2.7.18.pom --------- Co-authored-by: root Co-authored-by: j-sandy <30489233+j-sandy@users.noreply.github.com> --- gradle.properties | 2 +- kayenta-sql/kayenta-sql.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 74f954751..6016e4f63 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -orcaVersion=8.52.0 +orcaVersion=8.53.0 org.gradle.parallel=true spinnakerGradleVersion=8.32.1 targetJava11=true diff --git a/kayenta-sql/kayenta-sql.gradle b/kayenta-sql/kayenta-sql.gradle index bdc479b2b..397fc5c57 100644 --- a/kayenta-sql/kayenta-sql.gradle +++ b/kayenta-sql/kayenta-sql.gradle @@ -2,6 +2,6 @@ dependencies { implementation project(":kayenta-core") implementation "org.springframework.boot:spring-boot-starter-data-jpa" implementation "org.liquibase:liquibase-core" - runtimeOnly "mysql:mysql-connector-java" + runtimeOnly "com.mysql:mysql-connector-j" runtimeOnly "org.postgresql:postgresql" }