This is an automated email from the ASF dual-hosted git repository.

cunningt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


The following commit(s) were added to refs/heads/main by this push:
     new 20d4a88ec Exclude jackson3 artifacts coming in from citrus validation; 
current camel default is using jackson 2
20d4a88ec is described below

commit 20d4a88ec5c8f6f8e097f4356b83bade2007e4db
Author: Tom Cunningham <[email protected]>
AuthorDate: Sun May 17 13:44:45 2026 -0400

    Exclude jackson3 artifacts coming in from citrus validation; current camel 
default is using jackson 2
---
 tests/camel-kamelets-itest/pom.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/tests/camel-kamelets-itest/pom.xml 
b/tests/camel-kamelets-itest/pom.xml
index 08117d7dc..198ac4703 100644
--- a/tests/camel-kamelets-itest/pom.xml
+++ b/tests/camel-kamelets-itest/pom.xml
@@ -161,6 +161,22 @@
             <groupId>org.citrusframework</groupId>
             <artifactId>citrus-validation-json</artifactId>
             <scope>test</scope>
+            <!-- The current camel jackson default is jackson 2 - 
citrus-validation-json brings in jackson 3 -->
+            <!-- dependencies which cause confusion when trying to resolve 
transformers and datatypes -->
+            <exclusions>
+                <exclusion>
+                    <groupId>tools.jackson.core</groupId>
+                    <artifactId>jackson-databind</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>tools.jackson.core</groupId>
+                    <artifactId>jackson-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>tools.jackson.dataformat</groupId>
+                    <artifactId>jackson-dataformat-yaml</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <!-- Logging -->

Reply via email to