Skip to content

Commit 1e5a080

Browse files
authored
Merge pull request #9023 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 646e5e7 + dcc9ccf commit 1e5a080

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

docs/examples/junit5/redis/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies {
44
api "io.lettuce:lettuce-core:6.3.2.RELEASE"
55

66
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
7-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.2"
7+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.3"
88
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
99
testImplementation project(":testcontainers")
1010
testImplementation project(":junit-jupiter")

examples/hazelcast/build.gradle

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

99
dependencies {
1010
testImplementation 'org.testcontainers:testcontainers'
11-
testImplementation 'com.hazelcast:hazelcast:5.3.6'
11+
testImplementation 'com.hazelcast:hazelcast:5.3.8'
1212
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1313
testImplementation 'org.assertj:assertj-core:3.26.3'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'

examples/kafka-cluster/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
testCompileOnly "org.projectlombok:lombok:1.18.34"
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.34"
1212
testImplementation 'org.testcontainers:kafka'
13-
testImplementation 'org.apache.kafka:kafka-clients:3.7.1'
13+
testImplementation 'org.apache.kafka:kafka-clients:3.8.0'
1414
testImplementation 'org.assertj:assertj-core:3.26.3'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'ch.qos.logback:logback-classic:1.3.14'

examples/nats/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
testImplementation 'org.assertj:assertj-core:3.26.3'
1111
testImplementation 'org.testcontainers:testcontainers'
12-
testImplementation 'io.nats:jnats:2.18.1'
12+
testImplementation 'io.nats:jnats:2.19.1'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1414
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1515
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'

examples/ollama-hugging-face/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
testImplementation 'org.assertj:assertj-core:3.26.3'
1212
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1313
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
14-
testImplementation 'io.rest-assured:rest-assured:5.4.0'
14+
testImplementation 'io.rest-assured:rest-assured:5.5.0'
1515
}
1616

1717
test {

examples/zookeeper/build.gradle

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

99
dependencies {
10-
testImplementation 'org.apache.curator:curator-framework:5.6.0'
10+
testImplementation 'org.apache.curator:curator-framework:5.7.0'
1111
testImplementation 'org.testcontainers:testcontainers'
1212
testImplementation 'org.assertj:assertj-core:3.26.3'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.14'

modules/jdbc-test/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dependencies {
22
api project(':jdbc')
33

4-
api 'com.google.guava:guava:33.2.0-jre'
4+
api 'com.google.guava:guava:33.2.1-jre'
55
api 'org.apache.commons:commons-lang3:3.15.0'
66
api 'com.zaxxer:HikariCP-java6:2.3.13'
77
api 'commons-dbutils:commons-dbutils:1.8.1'

modules/kafka/build.gradle

+1-1
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.7.1'
6+
testImplementation 'org.apache.kafka:kafka-clients:3.8.0'
77
testImplementation 'org.assertj:assertj-core:3.26.3'
88
testImplementation 'com.google.guava:guava:23.0'
99
}

modules/pulsar/build.gradle

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

6-
testImplementation platform("org.apache.pulsar:pulsar-bom:3.2.3")
6+
testImplementation platform("org.apache.pulsar:pulsar-bom:3.3.0")
77
testImplementation 'org.apache.pulsar:pulsar-client'
88
testImplementation 'org.apache.pulsar:pulsar-client-admin'
99
testImplementation 'org.assertj:assertj-core:3.26.3'

modules/redpanda/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies {
44
api project(':testcontainers')
55
shaded 'org.freemarker:freemarker:2.3.32'
66

7-
testImplementation 'org.apache.kafka:kafka-clients:3.7.1'
7+
testImplementation 'org.apache.kafka:kafka-clients:3.8.0'
88
testImplementation 'org.assertj:assertj-core:3.26.3'
99
testImplementation 'io.rest-assured:rest-assured:5.5.0'
1010
}

modules/weaviate/build.gradle

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

66
testImplementation 'org.assertj:assertj-core:3.26.3'
7-
testImplementation 'io.weaviate:client:4.8.1'
7+
testImplementation 'io.weaviate:client:4.8.2'
88
}

smoke-test/turbo-mode/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
dependencies {
66
testImplementation 'org.testcontainers:testcontainers'
77
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
8-
testImplementation 'ch.qos.logback:logback-classic:1.3.8'
8+
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
99
testImplementation 'org.assertj:assertj-core:3.26.3'
1010
}
1111

0 commit comments

Comments
 (0)