build.gradle.kts 534 B

1234567891011121314151617181920212223
  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.0.0,)")
  9. }
  10. }
  11. dependencies {
  12. library("org.redisson:redisson:3.0.0")
  13. compileOnly("com.google.auto.value:auto-value-annotations")
  14. annotationProcessor("com.google.auto.value:auto-value")
  15. }
  16. tasks.named<Test>("test") {
  17. systemProperty("testLatestDeps", findProperty("testLatestDeps"))
  18. usesService(gradle.sharedServices.registrations["testcontainersBuildService"].getService())
  19. }