23 lines
534 B
Plaintext
23 lines
534 B
Plaintext
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group.set("io.undertow")
|
|
module.set("undertow-core")
|
|
versions.set("[1.4.0.Final,)")
|
|
assertInverse.set(true)
|
|
// release missing in maven central
|
|
skip("2.2.25.Final")
|
|
}
|
|
}
|
|
|
|
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"))
|
|
}
|