Skip to content
Merged
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
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@ subprojects {
guavaVersion = '32.1.3-jre'
slf4jVersion = '1.7.36'
cassandraDriverVersion = '3.11.5'
azureCosmosVersion = '4.72.0'
azureCosmosVersion = '4.73.1'
jooqVersion = '3.14.16'
awssdkVersion = '2.32.2'
commonsDbcp2Version = '2.13.0'
mysqlDriverVersion = '8.4.0'
postgresqlDriverVersion = '42.7.7'
oracleDriverVersion = '23.8.0.25.04'
oracleDriverVersion = '23.9.0.25.07'
sqlserverDriverVersion = '12.8.1.jre8'
sqliteDriverVersion = '3.50.2.0'
sqliteDriverVersion = '3.50.3.0'
yugabyteDriverVersion = '42.7.3-yb-4'
db2DriverVersion = '12.1.2.0'
mariadDbDriverVersion = '3.5.4'
picocliVersion = '4.7.7'
commonsTextVersion = '1.13.1'
junitVersion = '5.13.3'
commonsTextVersion = '1.14.0'
junitVersion = '5.13.4'
Comment on lines +30 to +44
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Several of the updated dependency versions in this change do not appear to exist in Maven Central, which is the only repository configured in the build script. This will likely cause the build to fail.

Specifically:

  • azureCosmosVersion: azure-cosmos version 4.73.1 may have compatibility issues with other dependencies.
  • oracleDriverVersion: ojdbc8 version 23.9.0.25.07 is not on Maven Central. The 23.x versions are typically for ojdbc11.
  • sqliteDriverVersion: sqlite-jdbc version 3.50.3.0 is not on Maven Central. The latest public version is 3.46.0.0.
  • commonsTextVersion: commons-text version 1.14.0 is not on Maven Central. The latest public version is 1.12.0.
  • junitVersion: junit-bom version 5.13.4 is not on Maven Central. The latest public version is 5.10.2.

If these dependencies are sourced from a private repository, it should be declared in the build configuration for reproducibility. Could you please verify these version numbers?

commonsLangVersion = '3.18.0'
assertjVersion = '3.27.3'
mockitoVersion = '4.11.0'
Expand Down