Skip to content

Commit

Permalink
0006297: Upgrade mysql, postgres libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Mar 18, 2024
1 parent d16f98b commit 7d9ef6c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions symmetric-assemble/common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ subprojects { subproject ->
hamcrestVersion = '1.3'
h2Version = '2.1.214'
derbyVersion = '10.14.2.0'
postgresqlVersion = '42.5.1'
postgresqlVersion = '42.5.6'
hsqldbVersion = '2.5.1'
sqliteVersion = '3.34.0'
mssqlVersion = '12.6.1.jre8'
Expand All @@ -304,7 +304,7 @@ subprojects { subproject ->
slf4jVersion = '2.0.7'
mockitoVersion = '4.4.0'
powerMockVersion = '2.0.9'
mysqlVersion = '8.0.28'
mysqlVersion = '8.3.0'
servletVersion = '4.0.1'
springVersion = '6.1.4'
springBootVersion = '3.1.8'
Expand Down
2 changes: 1 addition & 1 deletion symmetric-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ apply from: symAssembleDir + '/common.gradle'
api "org.jdom:jdom2:$jdomVersion"

provided "com.h2database:h2:$h2Version"
provided ("mysql:mysql-connector-java:$mysqlVersion") {
provided ("com.mysql:mysql-connector-j:$mysqlVersion") {
exclude group: "com.google.protobuf"
}
provided "org.postgresql:postgresql:$postgresqlVersion"
Expand Down
2 changes: 1 addition & 1 deletion symmetric-jdbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply from: symAssembleDir + '/common.gradle'

testImplementation project(path: ':symmetric-util', configuration: 'testArtifacts')
testImplementation "com.h2database:h2:$h2Version"
testImplementation "mysql:mysql-connector-java:$mysqlVersion"
testImplementation "com.mysql:mysql-connector-j:$mysqlVersion"
testImplementation "org.postgresql:postgresql:$postgresqlVersion"
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.2.0.0'

Expand Down
2 changes: 1 addition & 1 deletion symmetric-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply from: symAssembleDir + '/asciidoc.gradle'
provided "jakarta.jms:jakarta.jms-api:3.1.0"

provided "com.h2database:h2:$h2Version"
provided ("mysql:mysql-connector-java:$mysqlVersion") {
provided ("com.mysql:mysql-connector-j:$mysqlVersion") {
exclude group: "com.google.protobuf"
}
provided "org.postgresql:postgresql:$postgresqlVersion"
Expand Down

0 comments on commit 7d9ef6c

Please sign in to comment.