This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/main by this push:
new b27c06ea5cb CAMEL-23057 Undertow changes to support upgrade to 2.4
(#1674)
b27c06ea5cb is described below
commit b27c06ea5cb4e3b3e750f4121edbaae22cb9d93f
Author: Tom Cunningham <[email protected]>
AuthorDate: Tue Feb 24 01:30:53 2026 -0500
CAMEL-23057 Undertow changes to support upgrade to 2.4 (#1674)
* Add dependency on spring-boot-actuator-autoconfigure
(https://github.com/jolokia/jolokia/issues/978)
* Change groupId on undertow-servlet to match undertow 2.4
---
components-starter/camel-jolokia-starter/pom.xml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/components-starter/camel-jolokia-starter/pom.xml
b/components-starter/camel-jolokia-starter/pom.xml
index 8ba091318ad..0b7142e2abf 100644
--- a/components-starter/camel-jolokia-starter/pom.xml
+++ b/components-starter/camel-jolokia-starter/pom.xml
@@ -36,9 +36,16 @@
</dependency>
<dependency>
<groupId>org.jolokia</groupId>
- <artifactId>jolokia-support-springboot3</artifactId>
+ <artifactId>jolokia-support-springboot</artifactId>
<version>${jolokia-version}</version>
</dependency>
+ <!-- Required for Jolokia Spring Boot 4 support - Jolokia 2.5.x has this
as 'provided' scope -->
+ <!-- See: https://github.com/jolokia/jolokia/issues/978 -->
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-actuator-autoconfigure</artifactId>
+ <version>${spring-boot-version}</version>
+ </dependency>
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-management-starter</artifactId>