build.gradle.kts 339 B

1234567891011121314151617
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("com.google.http-client")
  7. module.set("google-http-client")
  8. // 1.19.0 is the first release. The versions before are betas and RCs
  9. versions.set("[1.19.0,)")
  10. }
  11. }
  12. dependencies {
  13. library("com.google.http-client:google-http-client:1.19.0")
  14. }