19 lines
322 B
Plaintext
19 lines
322 B
Plaintext
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
coreJdk()
|
|
}
|
|
}
|
|
|
|
otelJava {
|
|
minJavaVersionSupported.set(JavaVersion.VERSION_11)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":instrumentation:java-http-client:library"))
|
|
testImplementation(project(":instrumentation:java-http-client:testing"))
|
|
}
|