opentelemetry-java-instrume.../instrumentation/mongo/mongo-3.7/mongo-3.7.gradle

21 lines
589 B
Groovy

apply from: "$rootDir/gradle/instrumentation.gradle"
muzzle {
pass {
group = "org.mongodb"
module = "mongo-java-driver"
versions = "[3.7,)"
assertInverse = true
}
}
dependencies {
implementation(project(':instrumentation:mongo:mongo-common'))
// a couple of test attribute verifications don't pass until 3.8.0
library group: 'org.mongodb', name: 'mongo-java-driver', version: '3.8.0'
testImplementation project(':instrumentation:mongo:mongo-testing')
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '1.50.5'
}