build.gradle.kts 265 B

123456789101112131415
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("org.apache.httpcomponents.client5")
  7. module.set("httpclient5")
  8. versions.set("[5.0,)")
  9. }
  10. }
  11. dependencies {
  12. library("org.apache.httpcomponents.client5:httpclient5:5.0")
  13. }