build.gradle.kts 447 B

123456789101112131415
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. library("io.reactivex.rxjava3:rxjava:3.1.1")
  6. implementation(project(":instrumentation-annotations-support"))
  7. implementation(project(":instrumentation:rxjava:rxjava-3-common:library"))
  8. testImplementation(project(":instrumentation:rxjava:rxjava-3-common:testing"))
  9. }
  10. tasks.withType<Test>().configureEach {
  11. jvmArgs("-Dio.opentelemetry.context.enableStrictContext=false")
  12. }