You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2021/03/04 06:33:54 UTC

[camel-spring-boot] 01/02: camel-spring-boot-xml should come with xml dsl loader out of the box

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

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit d6a03c0fa6b6affe239b65f71001effa2dab9ab0
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Mar 4 07:33:00 2021 +0100

    camel-spring-boot-xml should come with xml dsl loader out of the box
---
 core/camel-spring-boot-xml/pom.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/core/camel-spring-boot-xml/pom.xml b/core/camel-spring-boot-xml/pom.xml
index 1a8e8e8..1164b4b 100644
--- a/core/camel-spring-boot-xml/pom.xml
+++ b/core/camel-spring-boot-xml/pom.xml
@@ -50,6 +50,10 @@
                     <groupId>org.apache.camel</groupId>
                     <artifactId>camel-xml-io</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.apache.camel</groupId>
+                    <artifactId>camel-xml-io-dsl</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>
@@ -59,7 +63,7 @@
         <!-- requires xml routes loader that is jaxb based -->
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-xml-jaxb</artifactId>
+            <artifactId>camel-xml-jaxb-dsl</artifactId>
         </dependency>
 
         <dependency>