19 lines
362 B
Plaintext
19 lines
362 B
Plaintext
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
coreJdk()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":instrumentation:java-http-server:library"))
|
|
testImplementation(project(":instrumentation:java-http-server:testing"))
|
|
}
|
|
|
|
tasks.test {
|
|
systemProperty("collectMetadata", findProperty("collectMetadata")?.toString() ?: "false")
|
|
}
|