build.gradle.kts 368 B

1234567891011121314
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. library("io.reactivex.rxjava2:rxjava:2.1.3")
  6. implementation(project(":instrumentation-api-annotation-support"))
  7. testImplementation(project(":instrumentation:rxjava:rxjava-2.0:testing"))
  8. }
  9. tasks.withType<Test>().configureEach {
  10. jvmArgs("-Dio.opentelemetry.context.enableStrictContext=false")
  11. }