mosche commented on a change in pull request #16798:
URL: https://github.com/apache/beam/pull/16798#discussion_r803445582
##########
File path: sdks/java/io/redis/build.gradle
##########
@@ -28,7 +28,7 @@ dependencies {
implementation "redis.clients:jedis:4.0.1"
testImplementation project(path: ":sdks:java:io:common", configuration:
"testRuntimeMigration")
testImplementation library.java.junit
- testImplementation "io.oden:embedded-redis:0.0.3"
+ testImplementation "org.signal:embedded-redis:0.8.2"
Review comment:
Please add the following to `build.gradle` (at the very end is fine) to
allow the required version of commons-io for test runs.
```
configurations.testRuntimeClasspath {
// force version required by embedded-redis:0.8.2 in tests
resolutionStrategy { force "commons-io:commons-io:2.7" }
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]