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

jbertram pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new 02d1512be7 ARTEMIS-3967 fix Camel WAR example pom.xml file
     new c4fded664b This closes #4202
02d1512be7 is described below

commit 02d1512be7988330a3551ae52b466b734eab0e6b
Author: Justin Bertram <[email protected]>
AuthorDate: Fri Sep 2 13:33:22 2022 -0500

    ARTEMIS-3967 fix Camel WAR example pom.xml file
---
 examples/features/standard/camel/camel-war/pom.xml | 49 +++++++++++++++++++++-
 1 file changed, 47 insertions(+), 2 deletions(-)

diff --git a/examples/features/standard/camel/camel-war/pom.xml 
b/examples/features/standard/camel/camel-war/pom.xml
index f7e4873750..7402d424a8 100644
--- a/examples/features/standard/camel/camel-war/pom.xml
+++ b/examples/features/standard/camel/camel-war/pom.xml
@@ -33,6 +33,7 @@ under the License.
 
    <properties>
       <activemq.basedir>${project.basedir}/../../../../..</activemq.basedir>
+      <camel.version>3.16.0</camel.version>
    </properties>
 
    <dependencies>
@@ -53,7 +54,51 @@ under the License.
       <dependency>
          <groupId>org.apache.camel</groupId>
          <artifactId>camel-spring</artifactId>
-         <version>3.16.0</version>
+         <version>${camel.version}</version>
+         <exclusions>
+            <exclusion>
+               <groupId>org.slf4j</groupId>
+               <artifactId>slf4j-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.camel</groupId>
+         <artifactId>camel-spring-xml</artifactId>
+         <version>${camel.version}</version>
+         <exclusions>
+            <exclusion>
+               <groupId>org.slf4j</groupId>
+               <artifactId>slf4j-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.camel</groupId>
+         <artifactId>camel-core-languages</artifactId>
+         <version>${camel.version}</version>
+         <exclusions>
+            <exclusion>
+               <groupId>org.slf4j</groupId>
+               <artifactId>slf4j-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.camel</groupId>
+         <artifactId>camel-xpath</artifactId>
+         <version>${camel.version}</version>
+         <exclusions>
+            <exclusion>
+               <groupId>org.slf4j</groupId>
+               <artifactId>slf4j-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.camel</groupId>
+         <artifactId>camel-jmx</artifactId>
+         <version>${camel.version}</version>
          <exclusions>
             <exclusion>
                <groupId>org.slf4j</groupId>
@@ -64,7 +109,7 @@ under the License.
       <dependency>
          <groupId>org.apache.camel</groupId>
          <artifactId>camel-jms</artifactId>
-         <version>2.20.0</version>
+         <version>${camel.version}</version>
          <exclusions>
             <exclusion>
                <groupId>org.slf4j</groupId>

Reply via email to