1234567891011121314151617181920 |
- plugins {
- id("otel.library-instrumentation")
- id("otel.nullaway-conventions")
- }
- dependencies {
- library("io.lettuce:lettuce-core:5.1.0.RELEASE")
- implementation(project(":instrumentation:lettuce:lettuce-common:library"))
- testImplementation(project(":instrumentation:lettuce:lettuce-5.1:testing"))
- testImplementation(project(":instrumentation:reactor-3.1:library"))
- }
- tasks {
- named<Test>("test") {
- systemProperty("testLatestDeps", findProperty("testLatestDeps"))
- usesService(gradle.sharedServices.registrations["testcontainersBuildService"].getService())
- }
- }
|