23 lines
533 B
Groovy
23 lines
533 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "net.spy"
|
|
module = 'spymemcached'
|
|
versions = "[2.12.0,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'net.spy', name: 'spymemcached', version: '2.12.0'
|
|
|
|
testImplementation deps.guava
|
|
testImplementation deps.testcontainers
|
|
}
|
|
|
|
tasks.withType(Test).configureEach {
|
|
// TODO run tests both with and without experimental span attributes
|
|
jvmArgs "-Dotel.instrumentation.spymemcached.experimental-span-attributes=true"
|
|
}
|