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 2022/01/26 13:03:56 UTC

[camel-examples] branch main updated: Fix the BeanDefinitionParsingException in management and route-throttling examples (#57)

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


The following commit(s) were added to refs/heads/main by this push:
     new c653916  Fix the BeanDefinitionParsingException in management and route-throttling examples (#57)
c653916 is described below

commit c653916b9e7608c42360497b0adc256d38a8f352
Author: Nicolas Filotto <es...@users.noreply.github.com>
AuthorDate: Wed Jan 26 14:03:50 2022 +0100

    Fix the BeanDefinitionParsingException in management and route-throttling examples (#57)
---
 examples/management/pom.xml       | 4 ++++
 examples/route-throttling/pom.xml | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/examples/management/pom.xml b/examples/management/pom.xml
index 7da4398..0ea384e 100644
--- a/examples/management/pom.xml
+++ b/examples/management/pom.xml
@@ -66,6 +66,10 @@
         </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
+            <artifactId>camel-spring-xml</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
             <artifactId>camel-jms</artifactId>
         </dependency>
         <dependency>
diff --git a/examples/route-throttling/pom.xml b/examples/route-throttling/pom.xml
index 60383f5..3ee49ae 100644
--- a/examples/route-throttling/pom.xml
+++ b/examples/route-throttling/pom.xml
@@ -66,6 +66,10 @@
         </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
+            <artifactId>camel-spring-xml</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
             <artifactId>camel-activemq</artifactId>
             <!-- lets use JMS 2.0 api but camel-jms still works with ActiveMQ 5.x that is JMS 1.1 only -->
             <exclusions>