Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ repositories {
}

dependencies {
compile 'mysql:mysql-connector-java:8.0.33'
compile 'com.mysql:mysql-connector-j:8.2.0'

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: Legacy driver alias remains available

Connector/J 8.2.0 retains the com.mysql.jdbc.Driver bridge used by Docker Compose and WaitForMySql.

Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

compile 'commons-lang:commons-lang:2.6'
}
2 changes: 1 addition & 1 deletion ftgo-application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
compile "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"

runtime 'mysql:mysql-connector-java:8.0.33'
runtime 'com.mysql:mysql-connector-j:8.2.0'

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: Runtime package contains upgraded connector

The executable application package contains Connector/J 8.2.0 and its protobuf dependency. Its runtime graph contains no legacy connector artifact.

Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.


testCompile project(":ftgo-end-to-end-tests-common")
}
2 changes: 1 addition & 1 deletion ftgo-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.7"

compile 'mysql:mysql-connector-java:8.0.33'
compile 'com.mysql:mysql-connector-j:8.2.0'

testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"

Expand Down