plugins { id("otel.javaagent-instrumentation") } muzzle { pass { group.set("net.spy") module.set("spymemcached") versions.set("[2.12.0,)") assertInverse.set(true) } } dependencies { library("net.spy:spymemcached:2.12.0") testImplementation("com.google.guava:guava") } tasks.withType().configureEach { // TODO run tests both with and without experimental span attributes jvmArgs("-Dotel.instrumentation.spymemcached.experimental-span-attributes=true") }