Skip to content

Commit

Permalink
🔧 align auto service deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandens committed Dec 3, 2023
1 parent 46e242a commit 4faa349
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions example-projects/custom-instrumentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 4faa349

Please sign in to comment.