12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("org.apache.kafka")
- module.set("kafka-clients")
- versions.set("[0.11.0.0,)")
- assertInverse.set(true)
- }
- }
- dependencies {
- compileOnly("com.google.auto.value:auto-value-annotations")
- annotationProcessor("com.google.auto.value:auto-value")
- bootstrap(project(":instrumentation:kafka:kafka-clients:kafka-clients-0.11:bootstrap"))
- implementation(project(":instrumentation:kafka:kafka-clients:kafka-clients-common:library"))
- library("org.apache.kafka:kafka-clients:0.11.0.0")
- testImplementation("org.testcontainers:kafka")
- testImplementation(project(":instrumentation:kafka:kafka-clients:kafka-clients-0.11:testing"))
- }
- tasks {
- withType<Test>().configureEach {
- usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
- systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
- // TODO run tests both with and without experimental span attributes
- jvmArgs("-Dotel.instrumentation.kafka.experimental-span-attributes=true")
- }
- val testPropagationDisabled by registering(Test::class) {
- filter {
- includeTestsMatching("KafkaClientPropagationDisabledTest")
- }
- include("**/KafkaClientPropagationDisabledTest.*")
- jvmArgs("-Dotel.instrumentation.kafka.producer-propagation.enabled=false")
- }
- val testReceiveSpansDisabled by registering(Test::class) {
- filter {
- includeTestsMatching("KafkaClientSuppressReceiveSpansTest")
- }
- include("**/KafkaClientSuppressReceiveSpansTest.*")
- }
- test {
- filter {
- excludeTestsMatching("KafkaClientPropagationDisabledTest")
- excludeTestsMatching("KafkaClientSuppressReceiveSpansTest")
- }
- jvmArgs("-Dotel.instrumentation.messaging.experimental.receive-telemetry.enabled=true")
- }
- check {
- dependsOn(testPropagationDisabled)
- dependsOn(testReceiveSpansDisabled)
- }
- }
|