Skip to content

Commit e6cff7c

Browse files
authored
Merge pull request #7391 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 9e568a9 + 0c70eef commit e6cff7c

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

examples/neo4j-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ dependencies {
1111
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.11'
1212
testImplementation 'org.testcontainers:neo4j'
1313
testImplementation 'org.testcontainers:junit-jupiter'
14-
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
14+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
1515
}

examples/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
9-
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.12.6"
9+
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.14.1"
1010
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.1"
1111
}
1212
}

modules/elasticsearch/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ description = "Testcontainers :: elasticsearch"
33
dependencies {
44
api project(':testcontainers')
55
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.9.0"
6-
testImplementation "org.elasticsearch.client:transport:7.17.11"
6+
testImplementation "org.elasticsearch.client:transport:7.17.12"
77
testImplementation 'org.assertj:assertj-core:3.24.2'
88
}

modules/hivemq/build.gradle

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

1414
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
1515
testImplementation(project(":junit-jupiter"))
16-
testImplementation("com.hivemq:hivemq-extension-sdk:4.16.0")
16+
testImplementation("com.hivemq:hivemq-extension-sdk:4.18.0")
1717
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.1")
1818
testImplementation("org.apache.httpcomponents:httpclient:4.5.14")
1919
testImplementation("ch.qos.logback:logback-classic:1.4.8")

modules/jdbc-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dependencies {
22
api project(':jdbc')
33

44
api 'com.google.guava:guava:32.1.2-jre'
5-
api 'org.apache.commons:commons-lang3:3.12.0'
5+
api 'org.apache.commons:commons-lang3:3.13.0'
66
api 'com.zaxxer:HikariCP-java6:2.3.13'
77
api 'commons-dbutils:commons-dbutils:1.7'
88

modules/k3s/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ dependencies {
99
shaded 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8'
1010

1111
testImplementation 'io.fabric8:kubernetes-client:6.8.0'
12-
testImplementation 'io.kubernetes:client-java:18.0.0'
12+
testImplementation 'io.kubernetes:client-java:18.0.1'
1313
testImplementation 'org.assertj:assertj-core:3.24.2'
1414
}

modules/kafka/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: Kafka"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation 'org.apache.kafka:kafka-clients:3.5.0'
6+
testImplementation 'org.apache.kafka:kafka-clients:3.5.1'
77
testImplementation 'org.assertj:assertj-core:3.24.2'
88
testImplementation 'com.google.guava:guava:23.0'
99
}

modules/mssqlserver/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ dependencies {
77
api project(':jdbc')
88

99
compileOnly project(':r2dbc')
10-
compileOnly 'io.r2dbc:r2dbc-mssql:1.0.1.RELEASE'
10+
compileOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'
1111

1212
testImplementation project(':jdbc-test')
1313
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:12.4.0.jre8-preview'
1414

1515
testImplementation project(':r2dbc')
16-
testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.1.RELEASE'
16+
testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'
1717

1818
// MSSQL's wait strategy requires the JDBC driver
1919
testImplementation testFixtures(project(':r2dbc'))

modules/spock/build.gradle

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

1818
testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
1919
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
20-
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.9.3'
20+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.0'
2121
testRuntimeOnly 'org.junit.platform:junit-platform-testkit:1.10.0'
2222

2323
testCompileOnly 'org.jetbrains:annotations:24.0.1'

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ buildscript {
55
}
66
}
77
dependencies {
8-
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.13.4"
8+
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.14.1"
99
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.1"
10-
classpath "org.gradle.toolchains:foojay-resolver:0.4.0"
10+
classpath "org.gradle.toolchains:foojay-resolver:0.6.0"
1111
}
1212
}
1313

0 commit comments

Comments
 (0)