build.gradle.kts 411 B

1234567891011121314
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. library("io.reactivex.rxjava3:rxjava:3.0.12")
  6. implementation(project(":instrumentation-api-annotation-support"))
  7. }
  8. tasks.withType<Test>().configureEach {
  9. // required on jdk17, uses spock Mock that needs access to jdk internals
  10. jvmArgs("--add-opens=java.base/java.lang.invoke=ALL-UNNAMED")
  11. jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
  12. }