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/02/08 09:04:07 UTC

[camel-examples] 02/02: Reduce number of JARs on classpath

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-examples.git

commit 40ab0cab1876fd4da98feb27eae2f97bbfb9a5da
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Feb 8 10:03:52 2021 +0100

    Reduce number of JARs on classpath
---
 examples/camel-example-routeloader/pom.xml | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/examples/camel-example-routeloader/pom.xml b/examples/camel-example-routeloader/pom.xml
index 9d612bd..aebddde 100644
--- a/examples/camel-example-routeloader/pom.xml
+++ b/examples/camel-example-routeloader/pom.xml
@@ -51,10 +51,7 @@
 
     <dependencies>
 
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-core</artifactId>
-        </dependency>
+        <!-- camel main -->
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-main</artifactId>
@@ -64,6 +61,13 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-joor</artifactId>
         </dependency>
+        <!-- xml-io with fast xml route loader -->
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-xml-io</artifactId>
+        </dependency>
+
+        <!-- components -->
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-timer</artifactId>