Skip to content

Commit da05109

Browse files
authored
Merge pull request #9005 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents e9a408b + ab243d6 commit da05109

File tree

18 files changed

+22
-22
lines changed

18 files changed

+22
-22
lines changed

core/build.gradle

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

100100
api 'com.github.docker-java:docker-java-transport-zerodep'
101101

102-
shaded 'com.google.guava:guava:33.2.0-jre'
102+
shaded 'com.google.guava:guava:33.2.1-jre'
103103
shaded "org.yaml:snakeyaml:1.33"
104104

105105
shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2'

docs/examples/junit4/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.3.1.RELEASE"
4+
api "io.lettuce:lettuce-core:6.3.2.RELEASE"
55

66
testImplementation "junit:junit:4.13.2"
77
testImplementation project(":testcontainers")

docs/examples/junit5/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.3.1.RELEASE"
4+
api "io.lettuce:lettuce-core:6.3.2.RELEASE"
55

66
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
77
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.2"

docs/examples/spock/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
dependencies {
7-
api "io.lettuce:lettuce-core:6.3.1.RELEASE"
7+
api "io.lettuce:lettuce-core:6.3.2.RELEASE"
88
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
99
testImplementation project(":spock")
1010
testImplementation 'ch.qos.logback:logback-classic:1.3.14'

examples/kafka-cluster/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ repositories {
77
}
88

99
dependencies {
10-
testCompileOnly "org.projectlombok:lombok:1.18.30"
11-
testAnnotationProcessor "org.projectlombok:lombok:1.18.30"
10+
testCompileOnly "org.projectlombok:lombok:1.18.34"
11+
testAnnotationProcessor "org.projectlombok:lombok:1.18.34"
1212
testImplementation 'org.testcontainers:kafka'
13-
testImplementation 'org.apache.kafka:kafka-clients:3.6.1'
13+
testImplementation 'org.apache.kafka:kafka-clients:3.7.1'
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/linked-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
compileOnly 'org.slf4j:slf4j-api:1.7.36'
1010
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
1111
implementation 'org.json:json:20231013'
12-
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
12+
testRuntimeOnly 'org.postgresql:postgresql:42.7.3'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1414
testImplementation 'org.testcontainers:postgresql'
1515
testImplementation 'org.assertj:assertj-core:3.26.3'

examples/neo4j-container/build.gradle

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

99
dependencies {
1010
testImplementation 'org.assertj:assertj-core:3.26.3'
11-
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.13'
11+
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.18'
1212
testImplementation 'org.testcontainers:neo4j'
1313
testImplementation 'org.testcontainers:junit-jupiter'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'

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

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

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
11-
implementation 'redis.clients:jedis:5.1.0'
11+
implementation 'redis.clients:jedis:5.1.3'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/redis-backed-cache/build.gradle

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

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
11-
implementation 'redis.clients:jedis:5.1.0'
11+
implementation 'redis.clients:jedis:5.1.3'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/singleton-container/build.gradle

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

99
dependencies {
1010

11-
implementation 'redis.clients:jedis:5.1.0'
11+
implementation 'redis.clients:jedis:5.1.3'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.36'

0 commit comments

Comments
 (0)