1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("io.projectreactor")
- module.set("reactor-core")
- versions.set("[3.1.0.RELEASE,)")
- extraDependency("io.opentelemetry:opentelemetry-api:1.0.0")
- assertInverse.set(true)
- excludeInstrumentationName("opentelemetry-api")
- }
- }
- tasks.withType<Test>().configureEach {
- // TODO run tests both with and without experimental span attributes
- jvmArgs("-Dotel.instrumentation.reactor.experimental-span-attributes=true")
- }
- dependencies {
- implementation(project(":instrumentation:reactor:reactor-3.1:library"))
- library("io.projectreactor:reactor-core:3.1.0.RELEASE")
- implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.0:javaagent"))
- compileOnly(project(":javaagent-tooling"))
- compileOnly(project(":instrumentation-annotations-support"))
- compileOnly(project(":opentelemetry-api-shaded-for-instrumenting", configuration = "shadow"))
- testInstrumentation(project(":instrumentation:opentelemetry-extension-annotations-1.0:javaagent"))
- testLibrary("io.projectreactor:reactor-test:3.1.0.RELEASE")
- testImplementation(project(":instrumentation-annotations-support-testing"))
- testImplementation(project(":instrumentation:reactor:reactor-3.1:testing"))
- testImplementation(project(":instrumentation-annotations"))
- testImplementation("io.opentelemetry:opentelemetry-extension-annotations")
- }
- testing {
- suites {
- val testInitialization by registering(JvmTestSuite::class) {
- dependencies {
- implementation(project(":instrumentation:reactor:reactor-3.1:library"))
- implementation(project(":instrumentation-annotations"))
- implementation("io.projectreactor:reactor-test:3.1.0.RELEASE")
- }
- }
- }
- }
- tasks {
- check {
- dependsOn(testing.suites)
- }
- }
|