build.gradle.kts 487 B

12345678910111213141516171819
  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-3.1:library"))
  10. }
  11. tasks {
  12. named<Test>("test") {
  13. systemProperty("testLatestDeps", findProperty("testLatestDeps"))
  14. }
  15. }