Skip to content

Commit ace301e

Browse files
authored
Use dependency management versions (#1002)
1 parent 224cf30 commit ace301e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ val CORE_DEPENDENCIES = listOf(
4040
"io.prometheus:simpleclient_common:${prometheusVersion}",
4141
"io.prometheus:simpleclient_httpserver:${prometheusVersion}",
4242
"org.mockito:mockito-core:${mockitoVersion}",
43+
"org.mockito:mockito-inline:${mockitoVersion}",
4344
"org.mockito:mockito-junit-jupiter:${mockitoVersion}",
4445
"org.slf4j:slf4j-api:${slf4jVersion}",
4546
"org.slf4j:slf4j-simple:${slf4jVersion}",

disk-buffering/build.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ java {
1515
targetCompatibility = JavaVersion.VERSION_1_8
1616
}
1717

18-
val autovalueVersion = "1.10.3"
1918
dependencies {
2019
api("io.opentelemetry:opentelemetry-sdk")
2120
implementation("io.opentelemetry:opentelemetry-exporter-otlp-common")
2221
implementation("io.opentelemetry.proto:opentelemetry-proto:0.20.0-alpha")
23-
compileOnly("com.google.auto.value:auto-value-annotations:$autovalueVersion")
24-
annotationProcessor("com.google.auto.value:auto-value:$autovalueVersion")
22+
compileOnly("com.google.auto.value:auto-value-annotations")
23+
annotationProcessor("com.google.auto.value:auto-value")
2524
signature("com.toasttab.android:gummy-bears-api-24:0.5.1@signature")
26-
testImplementation("org.mockito:mockito-inline:4.11.0")
25+
testImplementation("org.mockito:mockito-inline")
2726
testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
2827
}
2928

0 commit comments

Comments
 (0)