Skip to content

Commit

Permalink
Update dependencies (#18)
Browse files Browse the repository at this point in the history
* Update dependencies

* Update docker regis image for tests
  • Loading branch information
Doc94 authored Jul 24, 2024
1 parent ce6621b commit acb1e7b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ ext {
junit_version = '5.7.1'
logback_version = '1.3.14'

caffeine_version = '2.9.0'
lettuce_version = '6.0.9.RELEASE'
jackson_version = '2.17.0'
commons_lang_version = '3.12.0'
testcontainers_version = '1.15.3'
assertj_version = '3.24.2'
caffeine_version = '2.9.3' // TODO: Version 3.x require JDK 11
lettuce_version = '6.3.2.RELEASE'
jackson_version = '2.17.2'
commons_lang_version = '3.15.0'
testcontainers_version = '1.20.0'
assertj_version = '3.26.3'

isJitpack = "true" == System.getenv("JITPACK")
isRelease = !version.toString().endsWith('-SNAPSHOT')
Expand Down Expand Up @@ -83,7 +83,7 @@ allprojects {
addStringOption 'encoding', 'UTF-8'
links = [
jdk_javadoc,
"https://www.reactive-streams.org/reactive-streams-1.0.3-javadoc/",
"https://www.reactive-streams.org/reactive-streams-1.0.4-javadoc/",
"https://projectreactor.io/docs/core/release/api/",
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class IntegrationTests extends StoreVerification {
private RedisStoreService service;

@Rule
public GenericContainer<?> redis = new GenericContainer<>(DockerImageName.parse("redis:5.0.3-alpine"))
public GenericContainer<?> redis = new GenericContainer<>(DockerImageName.parse("redis:7.2.5-alpine"))
.withExposedPorts(6379);

@Before
Expand Down

0 comments on commit acb1e7b

Please sign in to comment.