build.gradle.kts 322 B

123456789101112131415161718
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. coreJdk()
  7. }
  8. }
  9. otelJava {
  10. minJavaVersionSupported.set(JavaVersion.VERSION_11)
  11. }
  12. dependencies {
  13. implementation(project(":instrumentation:java-http-client:library"))
  14. testImplementation(project(":instrumentation:java-http-client:testing"))
  15. }