This is an automated email from the ASF dual-hosted git repository. apupier pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 84fad1eb24e7d3334e4dc304cad3fd9027842767 Author: 0x6A75626172 <[email protected]> AuthorDate: Mon Sep 21 13:20:44 2026 +0200 CAMEL-24806: camel-jolt - switched from Jackson 2 to Jackson 3 dependencies --- components/camel-jolt/pom.xml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/components/camel-jolt/pom.xml b/components/camel-jolt/pom.xml index 8121f2f22836..430b4ae64aa2 100644 --- a/components/camel-jolt/pom.xml +++ b/components/camel-jolt/pom.xml @@ -17,7 +17,8 @@ limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -35,6 +36,18 @@ <properties> </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>tools.jackson</groupId> + <artifactId>jackson-bom</artifactId> + <version>${jackson3-version}</version> + <scope>import</scope> + <type>pom</type> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <dependency> <groupId>org.apache.camel</groupId> @@ -42,11 +55,11 @@ </dependency> <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-annotations</artifactId> + <groupId>tools.jackson.core</groupId> + <artifactId>jackson-core</artifactId> </dependency> <dependency> - <groupId>com.fasterxml.jackson.core</groupId> + <groupId>tools.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency>
