12345678910111213141516171819202122232425262728293031323334353637383940 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("org.asynchttpclient")
- module.set("async-http-client")
- versions.set("[2.0.0,)")
- assertInverse.set(true)
- }
- }
- dependencies
- library("org.asynchttpclient:async-http-client:2.0.0")
- testInstrumentation(project(":instrumentation:netty:netty-4.0:javaagent"))
- }
- otelJava
-
- maxJavaVersionForTests.set(JavaVersion.VERSION_1_8)
- }
- if
- configurations.configureEach
- if
- resolutionStrategy
- eachDependency
-
- if
- useVersion("4.0.34.Final")
- }
- }
- }
- }
- }
- }
|