Skip to content

Commit 65ceeac

Browse files
authored
Merge pull request #10471 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 20fa1fa + adf4a19 commit 65ceeac

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ dependencies {
110110
exclude group: 'com.google.guava', module: 'guava'
111111
}
112112
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
113-
testImplementation 'redis.clients:jedis:5.1.5'
113+
testImplementation 'redis.clients:jedis:6.0.0'
114114
testImplementation 'com.rabbitmq:amqp-client:5.22.0'
115115
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'
116116

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.5'
11+
implementation 'redis.clients:jedis:6.0.0'
1212
implementation 'com.google.code.gson:gson:2.11.0'
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.5'
11+
implementation 'redis.clients:jedis:6.0.0'
1212
implementation 'com.google.code.gson:gson:2.11.0'
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.5'
11+
implementation 'redis.clients:jedis:6.0.0'
1212
implementation 'com.google.code.gson:gson:2.11.0'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.36'

modules/junit-jupiter/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
testImplementation project(':mysql')
99
testImplementation project(':postgresql')
1010
testImplementation 'com.zaxxer:HikariCP:4.0.3'
11-
testImplementation 'redis.clients:jedis:5.1.5'
11+
testImplementation 'redis.clients:jedis:6.0.0'
1212
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1313
testImplementation ('org.mockito:mockito-core:4.11.0') {
1414
exclude(module: 'hamcrest-core')

modules/toxiproxy/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies {
44
api project(':testcontainers')
55
api 'eu.rekawek.toxiproxy:toxiproxy-java:2.1.7'
66

7-
testImplementation 'redis.clients:jedis:5.1.5'
7+
testImplementation 'redis.clients:jedis:6.0.0'
88
testImplementation 'org.assertj:assertj-core:3.27.3'
99
}
1010

0 commit comments

Comments
 (0)