19 lines
425 B
Groovy
19 lines
425 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.mongodb"
|
|
module = "mongo-java-driver"
|
|
versions = "[3.1,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(':instrumentation:mongo:mongo-3.1:library'))
|
|
|
|
library group: 'org.mongodb', name: 'mongo-java-driver', version: '3.1.0'
|
|
|
|
testImplementation project(':instrumentation:mongo:mongo-3.1:testing')
|
|
}
|