66 lines
1.3 KiB
Groovy
66 lines
1.3 KiB
Groovy
ext {
|
|
minJavaVersionForTests = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
apply plugin: 'org.unbroken-dome.test-sets'
|
|
|
|
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
|
|
}
|
|
}
|
|
|
|
testSets {
|
|
latestDepTest {
|
|
dirName = 'test'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly group: 'com.github.etaty', name: 'rediscala_2.11', version: '1.8.0'
|
|
|
|
testImplementation group: 'com.github.etaty', name: 'rediscala_2.11', version: '1.8.0'
|
|
testImplementation group: 'com.github.kstyrc', name: 'embedded-redis', version: '0.6'
|
|
|
|
latestDepTestImplementation group: 'com.github.etaty', name: 'rediscala_2.11', version: '+'
|
|
}
|