Skip to content

Commit e1d9da9

Browse files
authored
Merge pull request #11700 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 4283a0e + 63b9f4c commit e1d9da9

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

modules/azure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
testImplementation 'com.azure:azure-data-tables'
1414
testImplementation 'com.azure:azure-messaging-eventhubs'
1515
testImplementation 'com.azure:azure-messaging-servicebus'
16-
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.3.0.jre8-preview'
16+
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.4.0.jre11'
1717
}
1818

1919
tasks.japicmp {

modules/clickhouse/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ dependencies {
55
api project(':testcontainers-jdbc')
66

77
compileOnly project(':testcontainers-r2dbc')
8-
compileOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.4', classifier: 'http')
8+
compileOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.8', classifier: 'http')
99

1010
testImplementation project(':testcontainers-jdbc-test')
11-
testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-jdbc', version: '0.9.4', classifier: 'all')
11+
testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-jdbc', version: '0.9.8', classifier: 'all')
1212

13-
testImplementation 'com.clickhouse:client-v2:0.9.4'
13+
testImplementation 'com.clickhouse:client-v2:0.9.8'
1414
testImplementation testFixtures(project(':testcontainers-r2dbc'))
15-
testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.4', classifier: 'http')
15+
testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.8', classifier: 'http')
1616
}

modules/databend/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ dependencies {
44
api project(':testcontainers-jdbc')
55

66
testImplementation project(':testcontainers-jdbc-test')
7-
testRuntimeOnly 'com.databend:databend-jdbc:0.4.5'
7+
testRuntimeOnly 'com.databend:databend-jdbc:0.4.6'
88
}

modules/jdbc-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88

99
api 'org.assertj:assertj-core:3.27.7'
1010

11-
api 'org.apache.tomcat:tomcat-jdbc:11.0.14'
11+
api 'org.apache.tomcat:tomcat-jdbc:11.0.21'
1212
api 'org.vibur:vibur-dbcp:26.0'
1313
api 'com.mysql:mysql-connector-j:9.6.0'
1414
api 'org.junit.jupiter:junit-jupiter:5.14.3'

modules/jdbc/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ description = "Testcontainers :: JDBC"
33
dependencies {
44
api project(':testcontainers-database-commons')
55

6-
compileOnly 'org.jetbrains:annotations:26.0.2-1'
6+
compileOnly 'org.jetbrains:annotations:26.1.0'
77
testImplementation 'commons-dbutils:commons-dbutils:1.8.1'
88
testImplementation 'org.vibur:vibur-dbcp:26.0'
9-
testImplementation 'org.apache.tomcat:tomcat-jdbc:11.0.14'
9+
testImplementation 'org.apache.tomcat:tomcat-jdbc:11.0.21'
1010
testImplementation 'com.zaxxer:HikariCP-java6:2.3.13'
1111
testImplementation ('org.mockito:mockito-core:4.11.0') {
1212
exclude(module: 'hamcrest-core')

modules/mariadb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compileOnly 'org.mariadb:r2dbc-mariadb:1.0.3'
88

99
testImplementation project(':testcontainers-jdbc-test')
10-
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.5.6'
10+
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.5.8'
1111

1212
testImplementation testFixtures(project(':testcontainers-r2dbc'))
1313
testRuntimeOnly 'org.mariadb:r2dbc-mariadb:1.0.3'

modules/mssqlserver/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compileOnly 'io.r2dbc:r2dbc-mssql:1.0.3.RELEASE'
88

99
testImplementation project(':testcontainers-jdbc-test')
10-
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.3.0.jre8-preview'
10+
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.4.0.jre11'
1111

1212
testImplementation project(':testcontainers-r2dbc')
1313
testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.3.RELEASE'

modules/oracle-free/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compileOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.3.0'
88

99
testImplementation project(':testcontainers-jdbc-test')
10-
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.26.0.0.0'
10+
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.26.1.0.0'
1111

1212
compileOnly 'org.jetbrains:annotations:26.0.2-1'
1313

modules/oracle-xe/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compileOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.3.0'
88

99
testImplementation project(':testcontainers-jdbc-test')
10-
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.26.0.0.0'
10+
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.26.1.0.0'
1111

1212
compileOnly 'org.jetbrains:annotations:26.0.2-1'
1313

modules/trino/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies {
44
api project(':testcontainers-jdbc')
55

66
testImplementation project(':testcontainers-jdbc-test')
7-
testRuntimeOnly 'io.trino:trino-jdbc:478'
7+
testRuntimeOnly 'io.trino:trino-jdbc:480'
88
compileOnly 'org.jetbrains:annotations:26.0.2-1'
99
}

0 commit comments

Comments
 (0)