52 lines
1002 B
Groovy
52 lines
1002 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "com.github.etaty"
|
|
module = "rediscala_2.11"
|
|
versions = "[1.5.0,)"
|
|
assertInverse = true
|
|
}
|
|
|
|
pass {
|
|
group = "com.github.etaty"
|
|
module = "rediscala_2.12"
|
|
versions = "[1.8.0,)"
|
|
assertInverse = true
|
|
}
|
|
|
|
pass {
|
|
group = "com.github.etaty"
|
|
module = "rediscala_2.13"
|
|
versions = "[1.9.0,)"
|
|
assertInverse = true
|
|
}
|
|
|
|
pass {
|
|
group = "com.github.Ma27"
|
|
module = "rediscala_2.11"
|
|
versions = "[1.8.1,)"
|
|
assertInverse = true
|
|
}
|
|
|
|
pass {
|
|
group = "com.github.Ma27"
|
|
module = "rediscala_2.12"
|
|
versions = "[1.8.1,)"
|
|
assertInverse = true
|
|
}
|
|
|
|
pass {
|
|
group = "com.github.Ma27"
|
|
module = "rediscala_2.13"
|
|
versions = "[1.9.0,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'com.github.etaty', name: 'rediscala_2.11', version: '1.8.0'
|
|
|
|
testImplementation group: 'com.github.kstyrc', name: 'embedded-redis', version: '0.6'
|
|
}
|