From 4faa34938ab98607f777f470a0f25b36bdd33b40 Mon Sep 17 00:00:00 2001 From: Ryan Dens Date: Sat, 2 Dec 2023 18:22:18 -0800 Subject: [PATCH] :wrench: align auto service deps --- example-projects/custom-instrumentation/build.gradle.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/example-projects/custom-instrumentation/build.gradle.kts b/example-projects/custom-instrumentation/build.gradle.kts index 335a256..a760f51 100644 --- a/example-projects/custom-instrumentation/build.gradle.kts +++ b/example-projects/custom-instrumentation/build.gradle.kts @@ -20,8 +20,9 @@ tasks.jar { } dependencies { - compileOnly("com.google.auto.service:auto-service-annotations:1.0.1") - annotationProcessor("com.google.auto.service:auto-service:1.1.1") + val autoServiceVersion = "1.1.1" + compileOnly("com.google.auto.service:auto-service-annotations:$autoServiceVersion") + annotationProcessor("com.google.auto.service:auto-service:$autoServiceVersion") val otelInstrumentationVersion = "1.13.1-alpha" muzzleBootstrap("io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:$otelInstrumentationVersion") muzzleBootstrap("io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-semconv:$otelInstrumentationVersion")