12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("io.projectreactor.netty")
- module.set("reactor-netty")
- versions.set("[1.0.0,)")
- assertInverse.set(true)
- excludeInstrumentationName("netty")
- }
- pass {
- group.set("io.projectreactor.netty")
- module.set("reactor-netty-http")
- versions.set("[1.0.0,)")
- assertInverse.set(true)
- excludeInstrumentationName("netty")
- }
- }
- dependencies {
- compileOnly("com.google.auto.value:auto-value-annotations")
- annotationProcessor("com.google.auto.value:auto-value")
- implementation(project(":instrumentation:netty:netty-4.1:javaagent"))
- implementation(project(":instrumentation:netty:netty-4.1:library"))
- implementation(project(":instrumentation:netty:netty-4-common:library"))
- implementation(project(":instrumentation:netty:netty-common:library"))
- implementation(project(":instrumentation:reactor:reactor-3.1:library"))
- library("io.projectreactor.netty:reactor-netty-http:1.0.0")
- testInstrumentation(project(":instrumentation:reactor:reactor-netty:reactor-netty-0.9:javaagent"))
- testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))
- testInstrumentation(project(":instrumentation:reactor:reactor-3.1:javaagent"))
-
-
- testLibrary("io.projectreactor:reactor-test:3.4.3")
- testLibrary("io.projectreactor:reactor-core:3.4.3")
- testImplementation(project(":instrumentation-annotations"))
- latestDepTestLibrary("io.projectreactor:reactor-core:3.4.+")
- latestDepTestLibrary("io.projectreactor.netty:reactor-netty-http:1.0.+")
- }
- tasks {
- val testConnectionSpan by registering(Test::class) {
- filter {
- includeTestsMatching("ReactorNettyConnectionSpanTest")
- includeTestsMatching("ReactorNettyClientSslTest")
- }
- include("**/ReactorNettyConnectionSpanTest.*", "**/ReactorNettyClientSslTest.*")
- jvmArgs("-Dotel.instrumentation.netty.ssl-telemetry.enabled=true")
- jvmArgs("-Dotel.instrumentation.reactor-netty.connection-telemetry.enabled=true")
- jvmArgs("-Dotel.instrumentation.common.experimental.controller-telemetry.enabled=true")
- }
- test {
- filter {
- excludeTestsMatching("ReactorNettyConnectionSpanTest")
- excludeTestsMatching("ReactorNettyClientSslTest")
- }
- }
- check {
- dependsOn(testConnectionSpan)
- }
- }
|