Croway opened a new pull request, #203: URL: https://github.com/apache/camel-spring-boot-examples/pull/203
## Summary - `observation/pom.xml` imported `micrometer-tracing-bom:1.5.0` ahead of `spring-boot-dependencies` (which manages 1.7.1), forcing `micrometer-core` down to 1.15.0 - That older version is missing the `JvmMemoryMeterConventions` class, so `service2` crashed at startup with a `ClassNotFoundException` (before `service1`/`client` could even be reached) - Removed the redundant hardcoded `micrometer-tracing.version` property and BOM import, letting `spring-boot-dependencies` manage `micrometer-tracing`/`micrometer-core` consistently ## Test plan - [x] `mvn dependency:tree -Dincludes=io.micrometer:micrometer-core` on `service2` now resolves `1.17.1` (from `spring-boot-dependencies`) instead of `1.15.0` - [x] Confirmed `JvmMemoryMeterConventions` is present in the resolved `micrometer-core:1.17.1` jar - [x] Full reactor build (`loggingtracer`, `client`, `service1`, `service2`) succeeds - [x] Ran `service2` with `spring-boot:run` — starts cleanly (`Started Service2Application in 1.483 seconds`), no `ClassNotFoundException` 🤖 Generated with [Claude Code](https://claude.com/claude-code) https://claude.ai/code/session_01JvQJNT1UYzqUm5HQtkL6Nu -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
