build.gradle.kts 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("io.projectreactor")
  7. module.set("reactor-core")
  8. versions.set("[3.4.0,)")
  9. extraDependency("io.opentelemetry:opentelemetry-api:1.0.0")
  10. assertInverse.set(true)
  11. excludeInstrumentationName("opentelemetry-api")
  12. }
  13. }
  14. dependencies {
  15. library("io.projectreactor:reactor-core:3.4.0")
  16. implementation(project(":instrumentation:reactor:reactor-3.1:library"))
  17. implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.0:javaagent"))
  18. compileOnly(project(":javaagent-tooling"))
  19. compileOnly(project(":instrumentation-annotations-support"))
  20. compileOnly(project(":opentelemetry-api-shaded-for-instrumenting", configuration = "shadow"))
  21. testInstrumentation(project(":instrumentation:reactor:reactor-3.1:javaagent"))
  22. testInstrumentation(project(":instrumentation:opentelemetry-extension-annotations-1.0:javaagent"))
  23. testLibrary("io.projectreactor:reactor-test:3.1.0.RELEASE")
  24. testImplementation(project(":instrumentation-annotations-support-testing"))
  25. testImplementation(project(":instrumentation:reactor:reactor-3.1:testing"))
  26. testImplementation(project(":instrumentation-annotations"))
  27. testImplementation("io.opentelemetry:opentelemetry-extension-annotations")
  28. }