Add spring-boot-micrometer-tracing to spring-boot-starter-zipkin

This also adds io.micrometer:micrometer-tracing-bridge-brave to the
Zipkin starter, otherwise we'd get no traces exported.

This also adds spring-boot-micrometer-tracing-test to the Zipkin test
starter.

Closes gh-47866
This commit is contained in:
Moritz Halbritter
2025-10-29 16:49:58 +01:00
parent e071006f8e
commit 9c8716e2c8
2 changed files with 8 additions and 0 deletions
@@ -22,5 +22,8 @@ description = "Starter for testing Zipkin"
dependencies {
api(project(":starter:spring-boot-starter-test"))
api(project(":starter:spring-boot-starter-zipkin"))
api(project(":module:spring-boot-micrometer-tracing-test"))
}
@@ -23,5 +23,10 @@ description = "Starter for using Zipkin"
dependencies {
api(project(":starter:spring-boot-starter"))
api(project(":module:spring-boot-micrometer-tracing"))
api(project(":module:spring-boot-zipkin"))
runtimeOnly("io.micrometer:micrometer-tracing-bridge-brave") {
exclude(group: "aopalliance", module: "aopalliance")
}
}