Skip to content

Commit

Permalink
chore(dependencies): Autobump korkVersion (#1475)
Browse files Browse the repository at this point in the history
* chore(dependencies): Autobump korkVersion

* 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 <root@51dce6428a99>
Co-authored-by: j-sandy <30489233+j-sandy@users.noreply.github.com>
  • Loading branch information
3 people authored Jun 12, 2024
1 parent 97dd1ef commit 10d2ff1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion front50-integration/front50-integration.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
testImplementation "org.testcontainers:junit-jupiter"
testImplementation "org.testcontainers:mysql"
testRuntimeOnly "ch.qos.logback:logback-classic"
testRuntimeOnly "mysql:mysql-connector-java"
testRuntimeOnly "com.mysql:mysql-connector-j"
}

test.configure {
Expand Down
2 changes: 1 addition & 1 deletion front50-sql-mysql/front50-sql-mysql.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
runtimeOnly "mysql:mysql-connector-java"
runtimeOnly "com.mysql:mysql-connector-j"
}
2 changes: 1 addition & 1 deletion front50-sql/front50-sql.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
testImplementation "dev.minutest:minutest"
testImplementation "org.junit.jupiter:junit-jupiter-api"

testImplementation "mysql:mysql-connector-java"
testImplementation "com.mysql:mysql-connector-j"
testImplementation "org.testcontainers:mysql"

testImplementation "org.testcontainers:postgresql"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fiatVersion=1.47.0
includeProviders=azure,gcs,oracle,redis,s3,swift,sql
korkVersion=7.229.0
korkVersion=7.230.0
org.gradle.parallel=true
spinnakerGradleVersion=8.32.1
targetJava17=false
Expand Down

0 comments on commit 10d2ff1

Please sign in to comment.