123456789101112131415161718 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- otelJava {
- minJavaVersionSupported.set(JavaVersion.VERSION_17)
- }
- dependencies {
- implementation(project(":instrumentation:runtime-telemetry:runtime-telemetry-java17:library"))
- compileOnly("io.opentelemetry:opentelemetry-sdk-extension-autoconfigure")
- }
- tasks {
- test {
- jvmArgs("-Dotel.instrumentation.runtime-telemetry-java17.enabled=true")
- }
- }
|