diff --git a/core/build.gradle b/core/build.gradle index 219934586cd..423c4d4b612 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -110,7 +110,7 @@ dependencies { exclude group: 'com.google.guava', module: 'guava' } testImplementation 'org.apache.httpcomponents:httpclient:4.5.14' - testImplementation 'redis.clients:jedis:5.1.5' + testImplementation 'redis.clients:jedis:6.0.0' testImplementation 'com.rabbitmq:amqp-client:5.22.0' testImplementation 'org.mongodb:mongo-java-driver:3.12.14' diff --git a/examples/redis-backed-cache-testng/build.gradle b/examples/redis-backed-cache-testng/build.gradle index d28b2a0cc66..3fda7078fa4 100644 --- a/examples/redis-backed-cache-testng/build.gradle +++ b/examples/redis-backed-cache-testng/build.gradle @@ -8,7 +8,7 @@ repositories { dependencies { compileOnly 'org.slf4j:slf4j-api:1.7.36' - implementation 'redis.clients:jedis:5.1.5' + implementation 'redis.clients:jedis:6.0.0' implementation 'com.google.code.gson:gson:2.11.0' implementation 'com.google.guava:guava:23.0' testImplementation 'org.testcontainers:testcontainers' diff --git a/examples/redis-backed-cache/build.gradle b/examples/redis-backed-cache/build.gradle index 512045ef3e3..26dd05f170d 100644 --- a/examples/redis-backed-cache/build.gradle +++ b/examples/redis-backed-cache/build.gradle @@ -8,7 +8,7 @@ repositories { dependencies { compileOnly 'org.slf4j:slf4j-api:1.7.36' - implementation 'redis.clients:jedis:5.1.5' + implementation 'redis.clients:jedis:6.0.0' implementation 'com.google.code.gson:gson:2.11.0' implementation 'com.google.guava:guava:23.0' testImplementation 'org.testcontainers:testcontainers' diff --git a/examples/singleton-container/build.gradle b/examples/singleton-container/build.gradle index 12449babc4a..fecaa3d0499 100644 --- a/examples/singleton-container/build.gradle +++ b/examples/singleton-container/build.gradle @@ -8,7 +8,7 @@ repositories { dependencies { - implementation 'redis.clients:jedis:5.1.5' + implementation 'redis.clients:jedis:6.0.0' implementation 'com.google.code.gson:gson:2.11.0' implementation 'com.google.guava:guava:23.0' compileOnly 'org.slf4j:slf4j-api:1.7.36' diff --git a/modules/junit-jupiter/build.gradle b/modules/junit-jupiter/build.gradle index 1338385c863..121e949dbe2 100644 --- a/modules/junit-jupiter/build.gradle +++ b/modules/junit-jupiter/build.gradle @@ -8,7 +8,7 @@ dependencies { testImplementation project(':mysql') testImplementation project(':postgresql') testImplementation 'com.zaxxer:HikariCP:4.0.3' - testImplementation 'redis.clients:jedis:5.1.5' + testImplementation 'redis.clients:jedis:6.0.0' testImplementation 'org.apache.httpcomponents:httpclient:4.5.14' testImplementation ('org.mockito:mockito-core:4.11.0') { exclude(module: 'hamcrest-core') diff --git a/modules/toxiproxy/build.gradle b/modules/toxiproxy/build.gradle index 665587a50c4..fecefb33421 100644 --- a/modules/toxiproxy/build.gradle +++ b/modules/toxiproxy/build.gradle @@ -4,7 +4,7 @@ dependencies { api project(':testcontainers') api 'eu.rekawek.toxiproxy:toxiproxy-java:2.1.7' - testImplementation 'redis.clients:jedis:5.1.5' + testImplementation 'redis.clients:jedis:6.0.0' testImplementation 'org.assertj:assertj-core:3.27.3' }