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 2020/11/05 08:52:16 UTC

[camel] branch master updated: camel-atomix - align to use same netty version

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


The following commit(s) were added to refs/heads/master by this push:
     new e55ead1  camel-atomix - align to use same netty version
e55ead1 is described below

commit e55ead13176ddff75a5dfa660f836a11eeb015bb
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Nov 5 09:45:16 2020 +0100

    camel-atomix - align to use same netty version
---
 components/camel-atomix/pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/components/camel-atomix/pom.xml b/components/camel-atomix/pom.xml
index dc1f405..4f8fcec 100644
--- a/components/camel-atomix/pom.xml
+++ b/components/camel-atomix/pom.xml
@@ -81,6 +81,23 @@
             <groupId>io.atomix.catalyst</groupId>
             <artifactId>catalyst-netty</artifactId>
             <version>${atomix-catalyst-version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>io.netty</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <!-- align to use same version of netty -->
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-transport</artifactId>
+            <version>${netty-version}</version>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-handler</artifactId>
+            <version>${netty-version}</version>
         </dependency>
 
         <!-- logging -->