build.gradle.kts 805 B

123456789101112131415161718192021222324252627282930
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("org.redisson")
  7. module.set("redisson")
  8. versions.set("[3.17.0,)")
  9. assertInverse.set(true)
  10. }
  11. }
  12. dependencies {
  13. library("org.redisson:redisson:3.17.0")
  14. implementation(project(":instrumentation:redisson:redisson-common:javaagent"))
  15. compileOnly("com.google.auto.value:auto-value-annotations")
  16. annotationProcessor("com.google.auto.value:auto-value")
  17. testInstrumentation(project(":instrumentation:redisson:redisson-3.0:javaagent"))
  18. testImplementation(project(":instrumentation:redisson:redisson-common:testing"))
  19. }
  20. tasks.test {
  21. systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
  22. usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
  23. }