21 lines
411 B
Plaintext
21 lines
411 B
Plaintext
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group.set("org.apache.commons")
|
|
module.set("commons-dbcp2")
|
|
versions.set("[2,)")
|
|
assertInverse.set(true)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library("org.apache.commons:commons-dbcp2:2.0")
|
|
|
|
implementation(project(":instrumentation:apache-dbcp-2.0:library"))
|
|
|
|
testImplementation(project(":instrumentation:apache-dbcp-2.0:testing"))
|
|
}
|