Limit redisson version to 3.16.7 (#5198)

* Limit redisson version to 3.16.8

* latestDepTestLibrary
This commit is contained in:
Mateusz Rzeszutek 2022-01-21 14:45:17 +01:00 committed by GitHub
parent 66bf050bf8
commit 3c8a192d1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -6,7 +6,9 @@ muzzle {
pass {
group.set("org.redisson")
module.set("redisson")
versions.set("[3.0.0,)")
// in 3.16.8 CommandsData#getPromise() and CommandData#getPromise() return type was changed in
// a backwards-incompatible way from RPromise to CompletableStage
versions.set("[3.0.0,3.16.8)")
}
}
@ -15,6 +17,8 @@ dependencies {
compileOnly("com.google.auto.value:auto-value-annotations")
annotationProcessor("com.google.auto.value:auto-value")
latestDepTestLibrary("org.redisson:redisson:3.16.7")
}
tasks.test {