24 lines
773 B
Groovy
24 lines
773 B
Groovy
apply from: "${rootDir}/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "io.lettuce"
|
|
module = "lettuce-core"
|
|
versions = "[5.1.0.RELEASE,6.0.0.RELEASE)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'io.lettuce', name: 'lettuce-core', version: '5.1.0.RELEASE'
|
|
|
|
implementation project(':instrumentation:lettuce:lettuce-common:javaagent')
|
|
|
|
testImplementation group: 'com.github.kstyrc', name: 'embedded-redis', version: '0.6'
|
|
// Only 5.2+ will have command arguments in the db.statement tag.
|
|
testLibrary group: 'io.lettuce', name: 'lettuce-core', version: '5.2.0.RELEASE'
|
|
testInstrumentation project(':instrumentation:reactor-3.1:javaagent')
|
|
|
|
latestDepTestLibrary group: 'io.lettuce', name: 'lettuce-core', version: '5.+'
|
|
}
|