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 2018/02/28 08:59:34 UTC

[camel] 02/02: CAMEL-12300: Fixed example

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

commit 50d0a5ce3b708b49aa7250bf2b92ca7e97892b08
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Feb 28 09:59:17 2018 +0100

    CAMEL-12300: Fixed example
---
 examples/camel-example-artemis-amqp-blueprint/pom.xml | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/examples/camel-example-artemis-amqp-blueprint/pom.xml b/examples/camel-example-artemis-amqp-blueprint/pom.xml
index 953b9b9..8ed33da 100644
--- a/examples/camel-example-artemis-amqp-blueprint/pom.xml
+++ b/examples/camel-example-artemis-amqp-blueprint/pom.xml
@@ -39,7 +39,6 @@
     <category>Messaging</category>
   </properties>
 
-
   <dependencies>
 
     <!-- camel -->
@@ -57,13 +56,17 @@
     </dependency>
 
     <!-- Embbeded Artemis AMQP JMS Broker -->
-    <!-- ATTENTION: Needs to be placed before Camel's AMQP component -->
-    <!-- Netty versions between both enter in conflict -->
     <dependency>
       <groupId>org.apache.activemq</groupId>
       <artifactId>artemis-server</artifactId>
       <version>${activemq-artemis-version}</version>
       <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>io.netty</groupId>
+          <artifactId>netty-all</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.activemq</groupId>
@@ -76,6 +79,12 @@
       <artifactId>artemis-amqp-protocol</artifactId>
       <version>${activemq-artemis-version}</version>
       <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.qpid</groupId>
+          <artifactId>proton-j</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
 
     <!-- Camel's AMQP connectivity -->

-- 
To stop receiving notification emails like this one, please contact
davsclaus@apache.org.