diff --git a/modules/azure/build.gradle b/modules/azure/build.gradle index 517a981b707..e68cadf8b6e 100644 --- a/modules/azure/build.gradle +++ b/modules/azure/build.gradle @@ -13,5 +13,5 @@ dependencies { testImplementation 'com.azure:azure-data-tables' testImplementation 'com.azure:azure-messaging-eventhubs' testImplementation 'com.azure:azure-messaging-servicebus' - testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.2.0.jre8' + testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.3.0.jre8-preview' } diff --git a/modules/clickhouse/build.gradle b/modules/clickhouse/build.gradle index 1579ea834ce..91d80a687d7 100644 --- a/modules/clickhouse/build.gradle +++ b/modules/clickhouse/build.gradle @@ -5,12 +5,12 @@ dependencies { api project(':testcontainers-jdbc') compileOnly project(':testcontainers-r2dbc') - compileOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.2', classifier: 'http') + compileOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.4', classifier: 'http') testImplementation project(':testcontainers-jdbc-test') - testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-jdbc', version: '0.9.2', classifier: 'all') + testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-jdbc', version: '0.9.4', classifier: 'all') - testImplementation 'com.clickhouse:client-v2:0.9.2' + testImplementation 'com.clickhouse:client-v2:0.9.4' testImplementation testFixtures(project(':testcontainers-r2dbc')) - testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.2', classifier: 'http') + testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.4', classifier: 'http') } diff --git a/modules/databend/build.gradle b/modules/databend/build.gradle index d9a5655b4ed..9da45a6fab9 100644 --- a/modules/databend/build.gradle +++ b/modules/databend/build.gradle @@ -4,5 +4,5 @@ dependencies { api project(':testcontainers-jdbc') testImplementation project(':testcontainers-jdbc-test') - testRuntimeOnly 'com.databend:databend-jdbc:0.4.0' + testRuntimeOnly 'com.databend:databend-jdbc:0.4.1' } diff --git a/modules/jdbc-test/build.gradle b/modules/jdbc-test/build.gradle index a6759030313..5f4e0baafbd 100644 --- a/modules/jdbc-test/build.gradle +++ b/modules/jdbc-test/build.gradle @@ -2,14 +2,14 @@ dependencies { api project(':testcontainers-jdbc') api 'com.google.guava:guava:33.5.0-jre' - api 'org.apache.commons:commons-lang3:3.19.0' + api 'org.apache.commons:commons-lang3:3.20.0' api 'com.zaxxer:HikariCP-java6:2.3.13' api 'commons-dbutils:commons-dbutils:1.8.1' api 'org.assertj:assertj-core:3.27.6' - api 'org.apache.tomcat:tomcat-jdbc:11.0.11' + api 'org.apache.tomcat:tomcat-jdbc:11.0.14' api 'org.vibur:vibur-dbcp:26.0' - api 'com.mysql:mysql-connector-j:8.2.0' + api 'com.mysql:mysql-connector-j:9.5.0' api 'org.junit.jupiter:junit-jupiter:5.13.4' } diff --git a/modules/jdbc/build.gradle b/modules/jdbc/build.gradle index 958734d33e1..f34c99c0385 100644 --- a/modules/jdbc/build.gradle +++ b/modules/jdbc/build.gradle @@ -6,7 +6,7 @@ dependencies { compileOnly 'org.jetbrains:annotations:26.0.2-1' testImplementation 'commons-dbutils:commons-dbutils:1.8.1' testImplementation 'org.vibur:vibur-dbcp:26.0' - testImplementation 'org.apache.tomcat:tomcat-jdbc:11.0.11' + testImplementation 'org.apache.tomcat:tomcat-jdbc:11.0.14' testImplementation 'com.zaxxer:HikariCP-java6:2.3.13' testImplementation ('org.mockito:mockito-core:4.11.0') { exclude(module: 'hamcrest-core') diff --git a/modules/mssqlserver/build.gradle b/modules/mssqlserver/build.gradle index ca6fd1b66bb..6561dbbe486 100644 --- a/modules/mssqlserver/build.gradle +++ b/modules/mssqlserver/build.gradle @@ -7,7 +7,7 @@ dependencies { compileOnly 'io.r2dbc:r2dbc-mssql:1.0.3.RELEASE' testImplementation project(':testcontainers-jdbc-test') - testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.2.0.jre8' + testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.3.0.jre8-preview' testImplementation project(':testcontainers-r2dbc') testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.3.RELEASE' diff --git a/modules/oracle-free/build.gradle b/modules/oracle-free/build.gradle index 769572aaef1..e7cc9669632 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.3.0' testImplementation project(':testcontainers-jdbc-test') - testImplementation 'com.oracle.database.jdbc:ojdbc11:23.9.0.25.07' + testImplementation 'com.oracle.database.jdbc:ojdbc11:23.26.0.0.0' compileOnly 'org.jetbrains:annotations:26.0.2-1' diff --git a/modules/oracle-xe/build.gradle b/modules/oracle-xe/build.gradle index 0f2e76b29b1..6faeeb9367e 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.3.0' testImplementation project(':testcontainers-jdbc-test') - testImplementation 'com.oracle.database.jdbc:ojdbc11:23.9.0.25.07' + testImplementation 'com.oracle.database.jdbc:ojdbc11:23.26.0.0.0' compileOnly 'org.jetbrains:annotations:26.0.2-1' diff --git a/modules/trino/build.gradle b/modules/trino/build.gradle index 6839d4791aa..004bd38a8b9 100644 --- a/modules/trino/build.gradle +++ b/modules/trino/build.gradle @@ -4,6 +4,6 @@ dependencies { api project(':testcontainers-jdbc') testImplementation project(':testcontainers-jdbc-test') - testRuntimeOnly 'io.trino:trino-jdbc:477' + testRuntimeOnly 'io.trino:trino-jdbc:478' compileOnly 'org.jetbrains:annotations:26.0.2-1' }