1234567891011121314151617181920 |
- plugins {
- id("otel.library-instrumentation")
- }
- dependencies {
- library("io.projectreactor:reactor-core:3.1.0.RELEASE")
- implementation(project(":instrumentation-api-annotation-support"))
- testLibrary("io.projectreactor:reactor-test:3.1.0.RELEASE")
- testImplementation(project(":instrumentation:reactor:reactor-3.1:testing"))
-
- latestDepTestLibrary("io.micrometer:micrometer-core:1.+")
- }
- tasks.withType<Test>().configureEach {
-
- jvmArgs("--add-opens=java.base/java.lang.invoke=ALL-UNNAMED")
- jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
- }
|