build.gradle.kts 587 B

12345678910111213141516171819202122232425
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("org.quartz-scheduler")
  7. module.set("quartz")
  8. versions.set("[2.0.0,)")
  9. assertInverse.set(true)
  10. }
  11. }
  12. dependencies {
  13. implementation(project(":instrumentation:quartz-2.0:library"))
  14. library("org.quartz-scheduler:quartz:2.0.0")
  15. testImplementation(project(":instrumentation:quartz-2.0:testing"))
  16. }
  17. tasks.withType<Test>().configureEach {
  18. // TODO run tests both with and without experimental span attributes
  19. jvmArgs("-Dotel.instrumentation.quartz.experimental-span-attributes=true")
  20. }