build.gradle.kts 532 B

1234567891011121314151617181920
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("org.springframework.boot")
  7. module.set("spring-boot-actuator-autoconfigure")
  8. versions.set("[2.0.0.RELEASE,)")
  9. extraDependency("io.micrometer:micrometer-core:1.5.0")
  10. assertInverse.set(true)
  11. }
  12. }
  13. dependencies {
  14. library("org.springframework.boot:spring-boot-actuator-autoconfigure:2.0.0.RELEASE")
  15. library("io.micrometer:micrometer-core:1.5.0")
  16. implementation(project(":instrumentation:micrometer:micrometer-1.5:javaagent"))
  17. }