diff --git a/modules/azure/build.gradle b/modules/azure/build.gradle index 03cdcdd15d0..31699f62ad6 100644 --- a/modules/azure/build.gradle +++ b/modules/azure/build.gradle @@ -13,5 +13,5 @@ dependencies { testImplementation 'com.azure:azure-data-tables:12.5.0' testImplementation 'com.azure:azure-messaging-eventhubs:5.19.2' testImplementation 'com.azure:azure-messaging-servicebus:7.17.8' - testImplementation 'com.microsoft.sqlserver:mssql-jdbc:12.8.1.jre8' + testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.1.0.jre8-preview' } diff --git a/modules/databend/build.gradle b/modules/databend/build.gradle index 65b014314a3..8eac99519c4 100644 --- a/modules/databend/build.gradle +++ b/modules/databend/build.gradle @@ -4,6 +4,6 @@ dependencies { api project(':jdbc') testImplementation project(':jdbc-test') - testRuntimeOnly 'com.databend:databend-jdbc:0.3.2' + testRuntimeOnly 'com.databend:databend-jdbc:0.3.9' testImplementation 'org.assertj:assertj-core:3.27.3' } diff --git a/modules/jdbc-test/build.gradle b/modules/jdbc-test/build.gradle index 52467ad8582..aff78b9efdf 100644 --- a/modules/jdbc-test/build.gradle +++ b/modules/jdbc-test/build.gradle @@ -1,7 +1,7 @@ dependencies { api project(':jdbc') - api 'com.google.guava:guava:33.3.1-jre' + api 'com.google.guava:guava:33.4.8-jre' api 'org.apache.commons:commons-lang3:3.17.0' api 'com.zaxxer:HikariCP-java6:2.3.13' api 'commons-dbutils:commons-dbutils:1.8.1' @@ -10,7 +10,7 @@ dependencies { api 'org.assertj:assertj-core:3.27.3' - api 'org.apache.tomcat:tomcat-jdbc:10.0.27' + api 'org.apache.tomcat:tomcat-jdbc:11.0.9' api 'org.vibur:vibur-dbcp:25.0' api 'mysql:mysql-connector-java:8.0.33' } diff --git a/modules/jdbc/build.gradle b/modules/jdbc/build.gradle index 009533503bc..de68d8816d0 100644 --- a/modules/jdbc/build.gradle +++ b/modules/jdbc/build.gradle @@ -6,7 +6,7 @@ dependencies { compileOnly 'org.jetbrains:annotations:26.0.2' testImplementation 'commons-dbutils:commons-dbutils:1.8.1' testImplementation 'org.vibur:vibur-dbcp:25.0' - testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.30' + testImplementation 'org.apache.tomcat:tomcat-jdbc:11.0.9' testImplementation 'com.zaxxer:HikariCP-java6:2.3.13' testImplementation 'org.assertj:assertj-core:3.27.3' testImplementation ('org.mockito:mockito-core:4.11.0') { diff --git a/modules/mariadb/build.gradle b/modules/mariadb/build.gradle index 7492300b4b6..416ae4f2707 100644 --- a/modules/mariadb/build.gradle +++ b/modules/mariadb/build.gradle @@ -7,7 +7,7 @@ dependencies { compileOnly 'org.mariadb:r2dbc-mariadb:1.0.3' testImplementation project(':jdbc-test') - testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.4.1' + testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.5.4' testImplementation testFixtures(project(':r2dbc')) testRuntimeOnly 'org.mariadb:r2dbc-mariadb:1.0.3' diff --git a/modules/mssqlserver/build.gradle b/modules/mssqlserver/build.gradle index 006c5d38031..899bbcc88db 100644 --- a/modules/mssqlserver/build.gradle +++ b/modules/mssqlserver/build.gradle @@ -7,7 +7,7 @@ dependencies { compileOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE' testImplementation project(':jdbc-test') - testImplementation 'com.microsoft.sqlserver:mssql-jdbc:12.8.1.jre8' + testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.1.0.jre8-preview' testImplementation project(':r2dbc') testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE' diff --git a/modules/oracle-free/build.gradle b/modules/oracle-free/build.gradle index cc19ce93d54..8ce9ace6b46 100644 --- a/modules/oracle-free/build.gradle +++ b/modules/oracle-free/build.gradle @@ -7,7 +7,7 @@ dependencies { compileOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.2.0' testImplementation project(':jdbc-test') - testImplementation 'com.oracle.database.jdbc:ojdbc11:23.5.0.24.07' + testImplementation 'com.oracle.database.jdbc:ojdbc11:23.8.0.25.04' compileOnly 'org.jetbrains:annotations:26.0.2' diff --git a/modules/oracle-xe/build.gradle b/modules/oracle-xe/build.gradle index c509b3bf431..e61c4ea9abe 100644 --- a/modules/oracle-xe/build.gradle +++ b/modules/oracle-xe/build.gradle @@ -7,7 +7,7 @@ dependencies { compileOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.2.0' testImplementation project(':jdbc-test') - testImplementation 'com.oracle.database.jdbc:ojdbc11:23.5.0.24.07' + testImplementation 'com.oracle.database.jdbc:ojdbc11:23.8.0.25.04' compileOnly 'org.jetbrains:annotations:26.0.2' diff --git a/modules/timeplus/build.gradle b/modules/timeplus/build.gradle index a4656822de5..72da2ed182f 100644 --- a/modules/timeplus/build.gradle +++ b/modules/timeplus/build.gradle @@ -5,6 +5,6 @@ dependencies { api project(':jdbc') testImplementation project(':jdbc-test') - testRuntimeOnly 'com.timeplus:timeplus-native-jdbc:2.0.5' + testRuntimeOnly 'com.timeplus:timeplus-native-jdbc:2.0.10' testImplementation 'org.assertj:assertj-core:3.27.3' } diff --git a/modules/trino/build.gradle b/modules/trino/build.gradle index 0977b0306b4..f8d3a4f1307 100644 --- a/modules/trino/build.gradle +++ b/modules/trino/build.gradle @@ -4,6 +4,6 @@ dependencies { api project(':jdbc') testImplementation project(':jdbc-test') - testRuntimeOnly 'io.trino:trino-jdbc:458' + testRuntimeOnly 'io.trino:trino-jdbc:476' compileOnly 'org.jetbrains:annotations:26.0.2' } diff --git a/modules/yugabytedb/build.gradle b/modules/yugabytedb/build.gradle index cb5d583b4ca..7d124651a64 100644 --- a/modules/yugabytedb/build.gradle +++ b/modules/yugabytedb/build.gradle @@ -6,5 +6,5 @@ dependencies { // YCQL driver testImplementation 'com.yugabyte:java-driver-core:4.15.0-yb-2-TESTFIX.0' // YSQL driver - testRuntimeOnly 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-6' + testRuntimeOnly 'com.yugabyte:jdbc-yugabytedb:42.7.3-yb-4' }