19 lines
389 B
Groovy
19 lines
389 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.redisson"
|
|
module = "redisson"
|
|
versions = "[3.0.0,)"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'org.redisson', name: 'redisson', version: '3.0.0'
|
|
testImplementation group: 'com.github.kstyrc', name: 'embedded-redis', version: '0.6'
|
|
}
|
|
|
|
test {
|
|
systemProperty "testLatestDeps", testLatestDeps
|
|
}
|