123456789101112131415161718192021222324252627282930 |
- 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"))
- }
|