You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by he...@apache.org on 2022/09/08 05:08:07 UTC

[inlong] branch master updated: [INLONG-5824][Manager] Fix the broken logging due to log4j conflicts (#5826)

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

healchow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new e2c31ab57 [INLONG-5824][Manager] Fix the broken logging due to log4j conflicts (#5826)
e2c31ab57 is described below

commit e2c31ab579714dd6502b815cf1fc06d3285ad565
Author: woofyzhao <49...@qq.com>
AuthorDate: Thu Sep 8 13:08:03 2022 +0800

    [INLONG-5824][Manager] Fix the broken logging due to log4j conflicts (#5826)
---
 pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/pom.xml b/pom.xml
index cbdf8ca22..99819cc8d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -452,6 +452,10 @@
                         <groupId>org.apache.zookeeper</groupId>
                         <artifactId>zookeeper</artifactId>
                     </exclusion>
+                    <exclusion>
+                        <groupId>org.slf4j</groupId>
+                        <artifactId>slf4j-reload4j</artifactId>
+                    </exclusion>
                 </exclusions>
             </dependency>
             <dependency>
@@ -501,6 +505,12 @@
                 <groupId>org.apache.hadoop</groupId>
                 <artifactId>hadoop-mapreduce-client-core</artifactId>
                 <version>${hadoop.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.slf4j</groupId>
+                        <artifactId>slf4j-reload4j</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
 
             <!-- clickhouse -->