Update micrometer packages to v1.12.2 (#1150)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2024-01-09 08:10:04 -08:00 committed by GitHub
parent a1771e8d80
commit 2de945bae1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -19,14 +19,14 @@ dependencies {
annotationProcessor("com.google.auto.value:auto-value") annotationProcessor("com.google.auto.value:auto-value")
compileOnly("com.google.auto.value:auto-value-annotations") compileOnly("com.google.auto.value:auto-value-annotations")
testImplementation("io.micrometer:micrometer-core:1.12.1") testImplementation("io.micrometer:micrometer-core:1.12.2")
} }
testing { testing {
suites { suites {
val integrationTest by registering(JvmTestSuite::class) { val integrationTest by registering(JvmTestSuite::class) {
dependencies { dependencies {
implementation("io.micrometer:micrometer-registry-prometheus:1.12.1") implementation("io.micrometer:micrometer-registry-prometheus:1.12.2")
} }
} }
} }