21 lines
409 B
Plaintext
21 lines
409 B
Plaintext
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group.set("org.mongodb")
|
|
module.set("mongo-java-driver")
|
|
versions.set("[3.1,)")
|
|
assertInverse.set(true)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":instrumentation:mongo:mongo-3.1:library"))
|
|
|
|
library("org.mongodb:mongo-java-driver:3.1.0")
|
|
|
|
testImplementation(project(":instrumentation:mongo:mongo-3.1:testing"))
|
|
}
|