Test latest version of rediscala (#5951)
* Test latest version of rediscala * spotless
This commit is contained in:
parent
2bc962c5ee
commit
2fa85f12e1
|
@ -48,6 +48,8 @@ muzzle {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
library("com.github.etaty:rediscala_2.11:1.8.0")
|
library("com.github.etaty:rediscala_2.11:1.8.0")
|
||||||
|
|
||||||
|
latestDepTestLibrary("com.github.etaty:rediscala_2.13:+")
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks {
|
tasks {
|
||||||
|
@ -55,3 +57,12 @@ tasks {
|
||||||
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].getService())
|
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].getService())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (findProperty("testLatestDeps") as Boolean) {
|
||||||
|
configurations {
|
||||||
|
// rediscala_ artifact name is different for regular and latest tests
|
||||||
|
testImplementation {
|
||||||
|
exclude("com.github.etaty", "rediscala_2.11")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue