You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/01/11 20:41:26 UTC

[camel] branch master updated: Exclude log4j-core coming in from com.cedarsoftware:java-util, different version is specified in camel-headersmap (#2707)

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

acosentino 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 ce8e36e  Exclude log4j-core coming in from com.cedarsoftware:java-util, different version is specified in camel-headersmap (#2707)
ce8e36e is described below

commit ce8e36ef722ec8b06ff68f23be4b5b1ee57552d1
Author: Tom Cunningham <tc...@redhat.com>
AuthorDate: Fri Jan 11 15:41:17 2019 -0500

    Exclude log4j-core coming in from com.cedarsoftware:java-util, different version is specified in camel-headersmap (#2707)
---
 components/camel-headersmap/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/components/camel-headersmap/pom.xml b/components/camel-headersmap/pom.xml
index ef3f20d..4dc2747 100644
--- a/components/camel-headersmap/pom.xml
+++ b/components/camel-headersmap/pom.xml
@@ -50,6 +50,12 @@
       <groupId>com.cedarsoftware</groupId>
       <artifactId>java-util</artifactId>
       <version>${java-util-version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.logging.log4j</groupId>
+          <artifactId>log4j-core</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
 
     <!-- testing -->