Limit redisson version to 3.16.7 (#5198)
* Limit redisson version to 3.16.8 * latestDepTestLibrary
This commit is contained in:
parent
66bf050bf8
commit
3c8a192d1d
|
@ -6,7 +6,9 @@ muzzle {
|
||||||
pass {
|
pass {
|
||||||
group.set("org.redisson")
|
group.set("org.redisson")
|
||||||
module.set("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")
|
compileOnly("com.google.auto.value:auto-value-annotations")
|
||||||
annotationProcessor("com.google.auto.value:auto-value")
|
annotationProcessor("com.google.auto.value:auto-value")
|
||||||
|
|
||||||
|
latestDepTestLibrary("org.redisson:redisson:3.16.7")
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
|
|
Loading…
Reference in New Issue