opentelemetry-java-instrume.../instrumentation/rxjava/rxjava-2.0/javaagent/build.gradle.kts

31 lines
905 B
Plaintext

plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {
group.set("io.reactivex.rxjava2")
module.set("rxjava")
versions.set("[2.0.6,)")
assertInverse.set(true)
}
}
tasks.withType<Test>().configureEach {
// TODO run tests both with and without experimental span attributes
jvmArgs("-Dotel.instrumentation.rxjava.experimental-span-attributes=true")
}
dependencies {
library("io.reactivex.rxjava2:rxjava:2.0.6")
compileOnly(project(":instrumentation-annotations-support"))
implementation(project(":instrumentation:rxjava:rxjava-2.0:library"))
testInstrumentation(project(":instrumentation:opentelemetry-extension-annotations-1.0:javaagent"))
testImplementation(project(":instrumentation-annotations"))
testImplementation("io.opentelemetry:opentelemetry-extension-annotations")
testImplementation(project(":instrumentation:rxjava:rxjava-2.0:testing"))
}