19 lines
386 B
Groovy
19 lines
386 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "com.google.guava"
|
|
module = "guava"
|
|
versions = "[10.0,]"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'com.google.guava', name: 'guava', version: '10.0'
|
|
|
|
implementation project(':instrumentation:guava-10.0:library')
|
|
|
|
testImplementation deps.opentelemetryExtAnnotations
|
|
}
|