Skip to content

Commit 489ac7d

Browse files
authored
Merge pull request #8161 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 2d37a36 + 9fa2241 commit 489ac7d

File tree

32 files changed

+36
-36
lines changed

32 files changed

+36
-36
lines changed

docs/examples/junit4/generic/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88

99
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
1010
testImplementation "org.seleniumhq.selenium:selenium-api:4.17.0"
11-
testImplementation 'org.assertj:assertj-core:3.24.2'
11+
testImplementation 'org.assertj:assertj-core:3.25.2'
1212
}
1313

1414
test {

docs/examples/junit4/redis/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies {
55

66
testImplementation "junit:junit:4.13.2"
77
testImplementation project(":testcontainers")
8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.2'
99
}

docs/examples/junit5/redis/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.1"
99
testImplementation project(":testcontainers")
1010
testImplementation project(":junit-jupiter")
11-
testImplementation 'org.assertj:assertj-core:3.24.2'
11+
testImplementation 'org.assertj:assertj-core:3.25.2'
1212
}
1313

1414
test {

examples/cucumber/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies {
1616
testImplementation 'io.cucumber:cucumber-java'
1717
testImplementation 'io.cucumber:cucumber-junit'
1818
testImplementation 'org.testcontainers:selenium'
19-
testImplementation 'org.assertj:assertj-core:3.24.2'
19+
testImplementation 'org.assertj:assertj-core:3.25.2'
2020
}
2121

2222
test {

examples/hazelcast/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
testImplementation 'org.testcontainers:testcontainers'
1111
testImplementation 'com.hazelcast:hazelcast:5.3.6'
1212
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
13-
testImplementation 'org.assertj:assertj-core:3.24.2'
13+
testImplementation 'org.assertj:assertj-core:3.25.2'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
1515
}
1616

examples/immudb/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
implementation 'io.codenotary:immudb4j:1.0.1'
1111
testImplementation 'org.testcontainers:testcontainers'
1212
testImplementation 'org.testcontainers:junit-jupiter'
13-
testImplementation 'org.assertj:assertj-core:3.24.2'
13+
testImplementation 'org.assertj:assertj-core:3.25.2'
1414
testImplementation 'com.google.guava:guava:23.0'
1515
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1616
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'

examples/kafka-cluster/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.30"
1212
testImplementation 'org.testcontainers:kafka'
1313
testImplementation 'org.apache.kafka:kafka-clients:3.6.1'
14-
testImplementation 'org.assertj:assertj-core:3.24.2'
14+
testImplementation 'org.assertj:assertj-core:3.25.2'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1717
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'

examples/linked-container/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ dependencies {
1212
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1414
testImplementation 'org.testcontainers:postgresql'
15-
testImplementation 'org.assertj:assertj-core:3.24.2'
15+
testImplementation 'org.assertj:assertj-core:3.25.2'
1616
}
1717

examples/nats/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
testImplementation 'org.assertj:assertj-core:3.24.2'
10+
testImplementation 'org.assertj:assertj-core:3.25.2'
1111
testImplementation 'org.testcontainers:testcontainers'
1212
testImplementation 'io.nats:jnats:2.17.2'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.14'

examples/neo4j-container/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
testImplementation 'org.assertj:assertj-core:3.24.2'
10+
testImplementation 'org.assertj:assertj-core:3.25.2'
1111
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.13'
1212
testImplementation 'org.testcontainers:neo4j'
1313
testImplementation 'org.testcontainers:junit-jupiter'

examples/redis-backed-cache-testng/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies {
1414
testImplementation 'org.testcontainers:testcontainers'
1515
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1616
testImplementation 'org.testng:testng:7.5.1'
17-
testImplementation 'org.assertj:assertj-core:3.24.2'
17+
testImplementation 'org.assertj:assertj-core:3.25.2'
1818
}
1919

2020
test {

examples/redis-backed-cache/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies {
1515
testImplementation 'org.testcontainers:junit-jupiter'
1616
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
1717
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
18-
testImplementation 'org.assertj:assertj-core:3.24.2'
18+
testImplementation 'org.assertj:assertj-core:3.25.2'
1919
}
2020

2121
test {

examples/selenium-container/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies {
1616
testImplementation 'org.springframework.boot:spring-boot-starter-test'
1717
testImplementation 'org.testcontainers:selenium'
1818
testImplementation 'org.testcontainers:junit-jupiter'
19-
testImplementation 'org.assertj:assertj-core:3.24.2'
19+
testImplementation 'org.assertj:assertj-core:3.25.2'
2020
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
2121
}
2222

examples/sftp/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
testImplementation 'com.jcraft:jsch:0.1.55'
1111
testImplementation 'org.testcontainers:testcontainers'
12-
testImplementation 'org.assertj:assertj-core:3.24.2'
12+
testImplementation 'org.assertj:assertj-core:3.25.2'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
1515
}

examples/singleton-container/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies {
1515

1616
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1717
testImplementation 'org.testcontainers:testcontainers'
18-
testImplementation 'org.assertj:assertj-core:3.24.2'
18+
testImplementation 'org.assertj:assertj-core:3.25.2'
1919
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
2020
}
2121

examples/solr-container/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies {
1414

1515
testImplementation 'org.testcontainers:testcontainers'
1616
testImplementation 'org.testcontainers:solr'
17-
testImplementation 'org.assertj:assertj-core:3.24.2'
17+
testImplementation 'org.assertj:assertj-core:3.25.2'
1818
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
1919
}
2020

examples/zookeeper/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ repositories {
77
}
88

99
dependencies {
10-
testImplementation 'org.apache.curator:curator-framework:5.5.0'
10+
testImplementation 'org.apache.curator:curator-framework:5.6.0'
1111
testImplementation 'org.testcontainers:testcontainers'
12-
testImplementation 'org.assertj:assertj-core:3.24.2'
12+
testImplementation 'org.assertj:assertj-core:3.25.2'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
1515
}

modules/azure/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ dependencies {
66
shaded 'com.squareup.okhttp3:okhttp:4.12.0'
77

88
testImplementation 'org.assertj:assertj-core:3.25.1'
9-
testImplementation 'com.azure:azure-cosmos:4.53.1'
9+
testImplementation 'com.azure:azure-cosmos:4.54.0'
1010
}

modules/cockroachdb/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies {
55

66
testImplementation project(':jdbc-test')
77
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.1'
99
}

modules/dynalite/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies {
55

66
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.643'
77
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.643'
8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.2'
99
}

modules/elasticsearch/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description = "Testcontainers :: elasticsearch"
22

33
dependencies {
44
api project(':testcontainers')
5-
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.11.2"
5+
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.12.0"
66
testImplementation "org.elasticsearch.client:transport:7.17.17"
7-
testImplementation 'org.assertj:assertj-core:3.24.2'
7+
testImplementation 'org.assertj:assertj-core:3.25.2'
88
}

modules/gcloud/build.gradle

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

6-
testImplementation platform("com.google.cloud:libraries-bom:26.28.0")
6+
testImplementation platform("com.google.cloud:libraries-bom:26.30.0")
77
testImplementation 'com.google.cloud:google-cloud-bigquery'
88
testImplementation 'com.google.cloud:google-cloud-datastore'
99
testImplementation 'com.google.cloud:google-cloud-firestore'

modules/k3s/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ dependencies {
1010

1111
testImplementation 'io.fabric8:kubernetes-client:6.10.0'
1212
testImplementation 'io.kubernetes:client-java:19.0.0'
13-
testImplementation 'org.assertj:assertj-core:3.24.2'
13+
testImplementation 'org.assertj:assertj-core:3.25.2'
1414
}

modules/kafka/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies {
44
api project(':testcontainers')
55

66
testImplementation 'org.apache.kafka:kafka-clients:3.6.1'
7-
testImplementation 'org.assertj:assertj-core:3.24.2'
7+
testImplementation 'org.assertj:assertj-core:3.25.1'
88
testImplementation 'com.google.guava:guava:23.0'
99
}

modules/localstack/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ dependencies {
88
testImplementation 'com.amazonaws:aws-java-sdk-sqs'
99
testImplementation 'com.amazonaws:aws-java-sdk-logs'
1010
testImplementation 'software.amazon.awssdk:s3:2.23.9'
11-
testImplementation 'org.assertj:assertj-core:3.24.2'
11+
testImplementation 'org.assertj:assertj-core:3.25.2'
1212
}

modules/mongodb/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies {
44
api project(':testcontainers')
55

66
testImplementation("org.mongodb:mongodb-driver-sync:4.11.1")
7-
testImplementation 'org.assertj:assertj-core:3.24.2'
7+
testImplementation 'org.assertj:assertj-core:3.25.1'
88
}
99

1010
tasks.japicmp {

modules/neo4j/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ dependencies {
3434
api project(":testcontainers")
3535

3636
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.13'
37-
testImplementation 'org.assertj:assertj-core:3.24.2'
37+
testImplementation 'org.assertj:assertj-core:3.25.2'
3838
}

modules/pulsar/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: Pulsar"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation group: 'org.apache.pulsar', name: 'pulsar-client', version: '3.1.1'
6+
testImplementation group: 'org.apache.pulsar', name: 'pulsar-client', version: '3.1.2'
77
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.25.1'
8-
testImplementation group: 'org.apache.pulsar', name: 'pulsar-client-admin', version: '3.1.1'
8+
testImplementation group: 'org.apache.pulsar', name: 'pulsar-client-admin', version: '3.1.2'
99
}

modules/questdb/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies {
66

77
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
88
testImplementation project(':jdbc-test')
9-
testImplementation 'org.assertj:assertj-core:3.24.2'
9+
testImplementation 'org.assertj:assertj-core:3.25.2'
1010
testImplementation 'org.questdb:questdb:7.3.9'
1111
testImplementation 'org.awaitility:awaitility:4.2.0'
1212
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'

modules/r2dbc/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ dependencies {
1111
api project(':testcontainers')
1212
api 'io.r2dbc:r2dbc-spi:0.9.0.RELEASE'
1313

14-
testImplementation 'org.assertj:assertj-core:3.24.2'
14+
testImplementation 'org.assertj:assertj-core:3.25.2'
1515
testImplementation 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE'
1616
testImplementation project(':postgresql')
1717

1818
testFixturesImplementation 'io.projectreactor:reactor-core:3.6.2'
19-
testFixturesImplementation 'org.assertj:assertj-core:3.24.2'
19+
testFixturesImplementation 'org.assertj:assertj-core:3.25.2'
2020
}

modules/rabbitmq/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ description = "Testcontainers :: RabbitMQ"
33
dependencies {
44
api project(":testcontainers")
55
testImplementation 'com.rabbitmq:amqp-client:5.20.0'
6-
testImplementation 'org.assertj:assertj-core:3.24.2'
6+
testImplementation 'org.assertj:assertj-core:3.25.1'
77
compileOnly 'org.jetbrains:annotations:24.1.0'
88
}

test-support/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dependencies {
22
implementation 'junit:junit:4.13.2'
33
implementation 'org.slf4j:slf4j-api:1.7.36'
4-
testImplementation 'org.assertj:assertj-core:3.24.2'
4+
testImplementation 'org.assertj:assertj-core:3.25.2'
55
}

0 commit comments

Comments
 (0)