
Micrometer duplicated the binders in a separate module named micrometer-binders, and marked the binders in the core module as deprecated. This commit changes the imports to use the new binders in the micrometer-binders module. Additionally, the auto-configurations honor user-supplied beans which use the old binders in the micrometer-core module. See gh-30014
13 lines
447 B
Groovy
13 lines
447 B
Groovy
plugins {
|
|
id "org.springframework.boot.starter"
|
|
}
|
|
|
|
description = "Starter for using Spring Boot's Actuator which provides production ready features to help you monitor and manage your application"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
|
api(project(":spring-boot-project:spring-boot-actuator-autoconfigure"))
|
|
api("io.micrometer:micrometer-core")
|
|
api("io.micrometer:micrometer-binders")
|
|
}
|