Skip to content

Commit

Permalink
refactor(mysql): update mysql connector coordinate
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-agrawal committed Jun 4, 2024
1 parent f48a85f commit acd84ee
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion keiko-sql/keiko-sql.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ dependencies {
testImplementation project(":keiko-tck")
testImplementation "io.spinnaker.kork:kork-sql-test"
testImplementation "org.testcontainers:mysql"
testImplementation "mysql:mysql-connector-java"
testImplementation "com.mysql:mysql-connector-j"
}
2 changes: 1 addition & 1 deletion orca-queue-sql/orca-queue-sql.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ dependencies {
testImplementation("org.springframework:spring-test")
testImplementation("org.springframework.boot:spring-boot-test")

testRuntimeOnly("mysql:mysql-connector-java")
testRuntimeOnly("com.mysql:mysql-connector-j")
testImplementation("org.jetbrains.spek:spek-subject-extension:+")
}
2 changes: 1 addition & 1 deletion orca-sql-mysql/orca-sql-mysql.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
implementation(project(":orca-sql"))
runtimeOnly("mysql:mysql-connector-java")
runtimeOnly("com.mysql:mysql-connector-j")
}
2 changes: 1 addition & 1 deletion orca-sql/orca-sql.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies {
testImplementation("org.testcontainers:mysql")
testImplementation("org.testcontainers:postgresql")

testRuntimeOnly("mysql:mysql-connector-java")
testRuntimeOnly("com.mysql:mysql-connector-j")
testRuntimeOnly("org.postgresql:postgresql")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
Expand Down
2 changes: 1 addition & 1 deletion orca-web/orca-web.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {
implementation("net.logstash.logback:logstash-logback-encoder")
implementation("io.spinnaker.fiat:fiat-api:$fiatVersion")
implementation("io.spinnaker.fiat:fiat-core:$fiatVersion")
implementation("mysql:mysql-connector-java")
implementation("com.mysql:mysql-connector-j")

runtimeOnly("io.spinnaker.kork:kork-runtime")

Expand Down

0 comments on commit acd84ee

Please sign in to comment.