1234567891011121314151617181920 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("io.undertow")
- module.set("undertow-core")
- versions.set("[1.4.0.Final,)")
- assertInverse.set(true)
- }
- }
- dependencies {
- library("io.undertow:undertow-core:2.0.0.Final")
- bootstrap(project(":instrumentation:executors:bootstrap"))
- bootstrap(project(":instrumentation:servlet:servlet-common:bootstrap"))
- bootstrap(project(":instrumentation:undertow-1.4:bootstrap"))
- }
|