opentelemetry-java-instrume.../instrumentation/restlet/restlet-1.1/library/build.gradle.kts

22 lines
476 B
Plaintext

plugins {
id("otel.library-instrumentation")
}
repositories {
mavenCentral()
maven("https://maven.restlet.talend.com/")
mavenLocal()
}
dependencies {
library("org.restlet:org.restlet:1.1.5")
library("com.noelios.restlet:com.noelios.restlet:1.1.5")
testImplementation(project(":instrumentation:restlet:restlet-1.1:testing"))
}
tasks.withType<Test>().configureEach {
jvmArgs("-Dotel.instrumentation.common.experimental.controller-telemetry.enabled=true")
}