build.gradle.kts 582 B

1234567891011121314151617181920
  1. plugins {
  2. id("otel.library-instrumentation")
  3. id("otel.nullaway-conventions")
  4. }
  5. dependencies {
  6. library("io.lettuce:lettuce-core:5.1.0.RELEASE")
  7. implementation(project(":instrumentation:lettuce:lettuce-common:library"))
  8. testImplementation(project(":instrumentation:lettuce:lettuce-5.1:testing"))
  9. testImplementation(project(":instrumentation:reactor:reactor-3.1:library"))
  10. }
  11. tasks {
  12. test {
  13. systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
  14. usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
  15. }
  16. }