22 lines
528 B
Groovy
22 lines
528 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.mongodb"
|
|
module = "mongodb-driver-async"
|
|
versions = "[3.3,)"
|
|
extraDependency 'org.mongodb:mongo-java-driver'
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(':instrumentation:mongo:mongo-3.1:library'))
|
|
|
|
library "org.mongodb:mongodb-driver-async:3.3.0"
|
|
|
|
testImplementation project(':instrumentation:mongo:mongo-testing')
|
|
|
|
testInstrumentation project(':instrumentation:mongo:mongo-3.7:javaagent')
|
|
}
|