27 lines
667 B
Groovy
27 lines
667 B
Groovy
apply from: "${rootDir}/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "io.lettuce"
|
|
module = "lettuce-core"
|
|
versions = "[5.1.0.RELEASE,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library "io.lettuce:lettuce-core:5.1.0.RELEASE"
|
|
|
|
implementation project(':instrumentation:lettuce:lettuce-5.1:library')
|
|
|
|
testImplementation project(':instrumentation:lettuce:lettuce-5.1:testing')
|
|
|
|
// Only 5.2+ will have command arguments in the db.statement tag.
|
|
testLibrary "io.lettuce:lettuce-core:5.2.0.RELEASE"
|
|
testInstrumentation project(':instrumentation:reactor-3.1:javaagent')
|
|
}
|
|
|
|
test {
|
|
systemProperty "testLatestDeps", testLatestDeps
|
|
}
|