1234567891011121314151617181920 |
- 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"))
- }
|