build.gradle.kts 478 B

123456789101112131415161718
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("org.apache.httpcomponents")
  7. module.set("httpasyncclient")
  8. // 4.0 and 4.0.1 don't copy over the traceparent (etc) http headers on redirect
  9. versions.set("[4.1,)")
  10. // TODO implement a muzzle check so that 4.0.x (at least 4.0 and 4.0.1) do not get applied
  11. // and then bring back assertInverse
  12. }
  13. }
  14. dependencies {
  15. library("org.apache.httpcomponents:httpasyncclient:4.1")
  16. }