build.gradle.kts 469 B

1234567891011121314151617181920
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("io.undertow")
  7. module.set("undertow-core")
  8. versions.set("[1.4.0.Final,)")
  9. assertInverse.set(true)
  10. }
  11. }
  12. dependencies {
  13. library("io.undertow:undertow-core:2.0.0.Final")
  14. bootstrap(project(":instrumentation:executors:bootstrap"))
  15. bootstrap(project(":instrumentation:servlet:servlet-common:bootstrap"))
  16. bootstrap(project(":instrumentation:undertow-1.4:bootstrap"))
  17. }