From f994ff4b51860768654799c38e1023995234e769 Mon Sep 17 00:00:00 2001 From: Alexey Kudinkin Date: Wed, 7 Sep 2022 21:02:24 -0700 Subject: [PATCH 1/5] Downgrading all of the log4j2 deps to "provided" scope, since these are not an API modules (as advertised), but rather fully-fledged implementations adding dependency on other modules (like log4j2 in the case of "log4j-1.2-api") --- hudi-aws/pom.xml | 6 ++++++ hudi-cli/pom.xml | 6 ++++++ hudi-client/hudi-client-common/pom.xml | 6 ++++++ hudi-client/hudi-flink-client/pom.xml | 16 +++++++++++++++- hudi-client/hudi-java-client/pom.xml | 6 ++++++ hudi-client/hudi-spark-client/pom.xml | 6 ++++++ hudi-common/pom.xml | 18 +----------------- hudi-examples/hudi-examples-java/pom.xml | 7 +++++++ hudi-examples/hudi-examples-spark/pom.xml | 8 ++++++++ hudi-flink-datasource/hudi-flink/pom.xml | 14 ++++++++++++++ hudi-flink-datasource/hudi-flink1.13.x/pom.xml | 15 +++++++++++++++ hudi-flink-datasource/hudi-flink1.14.x/pom.xml | 15 +++++++++++++++ hudi-flink-datasource/hudi-flink1.15.x/pom.xml | 15 +++++++++++++++ hudi-gcp/pom.xml | 6 ++++++ hudi-hadoop-mr/pom.xml | 6 ++++++ hudi-integ-test/pom.xml | 6 ++++++ hudi-kafka-connect/pom.xml | 6 ++++++ .../hudi-spark-common/pom.xml | 6 ++++++ hudi-spark-datasource/hudi-spark/pom.xml | 6 ++++++ hudi-sync/hudi-adb-sync/pom.xml | 14 ++++++++++++++ hudi-sync/hudi-hive-sync/pom.xml | 15 +++++++-------- hudi-sync/hudi-sync-common/pom.xml | 9 +++++++++ hudi-timeline-service/pom.xml | 13 ++++++------- hudi-utilities/pom.xml | 3 +-- packaging/hudi-integ-test-bundle/pom.xml | 5 +++++ packaging/hudi-kafka-connect-bundle/pom.xml | 14 -------------- pom.xml | 9 +++++++++ 27 files changed, 207 insertions(+), 49 deletions(-) diff --git a/hudi-aws/pom.xml b/hudi-aws/pom.xml index eac2c60d30066..c634102550610 100644 --- a/hudi-aws/pom.xml +++ b/hudi-aws/pom.xml @@ -34,6 +34,12 @@ + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi diff --git a/hudi-cli/pom.xml b/hudi-cli/pom.xml index 0910d94c82d37..2bc5213f22315 100644 --- a/hudi-cli/pom.xml +++ b/hudi-cli/pom.xml @@ -139,6 +139,12 @@ ${scala.version} + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi diff --git a/hudi-client/hudi-client-common/pom.xml b/hudi-client/hudi-client-common/pom.xml index 031a9ee6a3231..9757e95c3b6c8 100644 --- a/hudi-client/hudi-client-common/pom.xml +++ b/hudi-client/hudi-client-common/pom.xml @@ -30,6 +30,12 @@ jar + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi diff --git a/hudi-client/hudi-flink-client/pom.xml b/hudi-client/hudi-flink-client/pom.xml index a3c72e0dab114..47280bf72d6f7 100644 --- a/hudi-client/hudi-flink-client/pom.xml +++ b/hudi-client/hudi-flink-client/pom.xml @@ -35,7 +35,21 @@ - + + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.logging.log4j + log4j-slf4j-impl + + + org.slf4j + slf4j-api + + + org.apache.hudi hudi-client-common diff --git a/hudi-client/hudi-java-client/pom.xml b/hudi-client/hudi-java-client/pom.xml index f487a4aa68cc1..4eee515578126 100644 --- a/hudi-client/hudi-java-client/pom.xml +++ b/hudi-client/hudi-java-client/pom.xml @@ -30,6 +30,12 @@ jar + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi diff --git a/hudi-client/hudi-spark-client/pom.xml b/hudi-client/hudi-spark-client/pom.xml index 19d49f5d33165..8d913d60ca430 100644 --- a/hudi-client/hudi-spark-client/pom.xml +++ b/hudi-client/hudi-spark-client/pom.xml @@ -37,6 +37,12 @@ ${scala.version} + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi diff --git a/hudi-common/pom.xml b/hudi-common/pom.xml index bfbfdee776b08..d3f37864e3ee3 100644 --- a/hudi-common/pom.xml +++ b/hudi-common/pom.xml @@ -101,27 +101,11 @@ - + org.apache.logging.log4j log4j-1.2-api - - org.apache.logging.log4j - log4j-api - - - org.apache.logging.log4j - log4j-slf4j-impl - - - org.slf4j - jul-to-slf4j - - - org.slf4j - slf4j-api - diff --git a/hudi-examples/hudi-examples-java/pom.xml b/hudi-examples/hudi-examples-java/pom.xml index 2f4fa618016ac..001e8ada9e9cc 100644 --- a/hudi-examples/hudi-examples-java/pom.xml +++ b/hudi-examples/hudi-examples-java/pom.xml @@ -108,6 +108,13 @@ + + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.hudi hudi-examples-common diff --git a/hudi-examples/hudi-examples-spark/pom.xml b/hudi-examples/hudi-examples-spark/pom.xml index 1b5e9a1455aa5..4ac90cce1cf87 100644 --- a/hudi-examples/hudi-examples-spark/pom.xml +++ b/hudi-examples/hudi-examples-spark/pom.xml @@ -108,12 +108,20 @@ + org.scala-lang scala-library ${scala.version} + + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.hudi hudi-examples-common diff --git a/hudi-flink-datasource/hudi-flink/pom.xml b/hudi-flink-datasource/hudi-flink/pom.xml index b87915480e6b7..a3ab958bf782e 100644 --- a/hudi-flink-datasource/hudi-flink/pom.xml +++ b/hudi-flink-datasource/hudi-flink/pom.xml @@ -75,6 +75,20 @@ + + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.logging.log4j + log4j-slf4j-impl + + + org.slf4j + slf4j-api + + org.apache.hudi diff --git a/hudi-flink-datasource/hudi-flink1.13.x/pom.xml b/hudi-flink-datasource/hudi-flink1.13.x/pom.xml index 8cb923b4e1645..ac3ae5753dbd3 100644 --- a/hudi-flink-datasource/hudi-flink1.13.x/pom.xml +++ b/hudi-flink-datasource/hudi-flink1.13.x/pom.xml @@ -33,6 +33,21 @@ + + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.logging.log4j + log4j-slf4j-impl + + + org.slf4j + slf4j-api + + + org.apache.hudi hudi-common diff --git a/hudi-flink-datasource/hudi-flink1.14.x/pom.xml b/hudi-flink-datasource/hudi-flink1.14.x/pom.xml index cef0e2b8392a0..007b754b10407 100644 --- a/hudi-flink-datasource/hudi-flink1.14.x/pom.xml +++ b/hudi-flink-datasource/hudi-flink1.14.x/pom.xml @@ -33,6 +33,21 @@ + + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.logging.log4j + log4j-slf4j-impl + + + org.slf4j + slf4j-api + + + org.apache.hudi hudi-common diff --git a/hudi-flink-datasource/hudi-flink1.15.x/pom.xml b/hudi-flink-datasource/hudi-flink1.15.x/pom.xml index a9c2519736fde..bd97dce1a6010 100644 --- a/hudi-flink-datasource/hudi-flink1.15.x/pom.xml +++ b/hudi-flink-datasource/hudi-flink1.15.x/pom.xml @@ -33,6 +33,21 @@ + + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.logging.log4j + log4j-slf4j-impl + + + org.slf4j + slf4j-api + + + org.apache.hudi hudi-common diff --git a/hudi-gcp/pom.xml b/hudi-gcp/pom.xml index 3a93fa57384e6..b7d28f514e9dd 100644 --- a/hudi-gcp/pom.xml +++ b/hudi-gcp/pom.xml @@ -44,6 +44,12 @@ See https://github.com/GoogleCloudPlatform/cloud-opensource-java/wiki/The-Google + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi diff --git a/hudi-hadoop-mr/pom.xml b/hudi-hadoop-mr/pom.xml index 720b17654d89d..047f040943871 100644 --- a/hudi-hadoop-mr/pom.xml +++ b/hudi-hadoop-mr/pom.xml @@ -30,6 +30,12 @@ + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi diff --git a/hudi-integ-test/pom.xml b/hudi-integ-test/pom.xml index a63bf44223727..120059ddbcb4e 100644 --- a/hudi-integ-test/pom.xml +++ b/hudi-integ-test/pom.xml @@ -164,6 +164,12 @@ + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.logging.log4j log4j-core diff --git a/hudi-kafka-connect/pom.xml b/hudi-kafka-connect/pom.xml index d32d0fffe70f6..d0b81d1ed88c9 100644 --- a/hudi-kafka-connect/pom.xml +++ b/hudi-kafka-connect/pom.xml @@ -154,7 +154,13 @@ ${proto.version} + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.logging.log4j log4j-core diff --git a/hudi-spark-datasource/hudi-spark-common/pom.xml b/hudi-spark-datasource/hudi-spark-common/pom.xml index 27bb1405b97a5..2ab2b24e748f0 100644 --- a/hudi-spark-datasource/hudi-spark-common/pom.xml +++ b/hudi-spark-datasource/hudi-spark-common/pom.xml @@ -149,6 +149,12 @@ ${scala.version} + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi diff --git a/hudi-spark-datasource/hudi-spark/pom.xml b/hudi-spark-datasource/hudi-spark/pom.xml index 035c099c3a423..ddce2ae63770f 100644 --- a/hudi-spark-datasource/hudi-spark/pom.xml +++ b/hudi-spark-datasource/hudi-spark/pom.xml @@ -172,6 +172,12 @@ ${scala.version} + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi diff --git a/hudi-sync/hudi-adb-sync/pom.xml b/hudi-sync/hudi-adb-sync/pom.xml index fc2f914e8ebf7..e905927136007 100644 --- a/hudi-sync/hudi-adb-sync/pom.xml +++ b/hudi-sync/hudi-adb-sync/pom.xml @@ -97,6 +97,20 @@ + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.logging.log4j + log4j-slf4j-impl + + + org.slf4j + slf4j-api + + + org.apache.logging.log4j log4j-core diff --git a/hudi-sync/hudi-hive-sync/pom.xml b/hudi-sync/hudi-hive-sync/pom.xml index 738bd218e9429..dde36c4704fb0 100644 --- a/hudi-sync/hudi-hive-sync/pom.xml +++ b/hudi-sync/hudi-hive-sync/pom.xml @@ -35,8 +35,14 @@ + + + + org.apache.logging.log4j + log4j-1.2-api + - + org.apache.hudi hudi-common @@ -53,13 +59,6 @@ ${project.version} - - - org.apache.logging.log4j - log4j-core - compile - - org.apache.parquet parquet-avro diff --git a/hudi-sync/hudi-sync-common/pom.xml b/hudi-sync/hudi-sync-common/pom.xml index 84d20f893fa9c..df31e860ca64a 100644 --- a/hudi-sync/hudi-sync-common/pom.xml +++ b/hudi-sync/hudi-sync-common/pom.xml @@ -32,15 +32,24 @@ + + + org.apache.logging.log4j + log4j-1.2-api + + + org.apache.hudi hudi-common ${project.version} + org.apache.parquet parquet-avro + org.apache.hadoop hadoop-common diff --git a/hudi-timeline-service/pom.xml b/hudi-timeline-service/pom.xml index ff5b8dfe7add4..ddff6e6fd96cb 100644 --- a/hudi-timeline-service/pom.xml +++ b/hudi-timeline-service/pom.xml @@ -68,6 +68,12 @@ + + + org.apache.logging.log4j + log4j-1.2-api + + org.apache.hudi @@ -75,13 +81,6 @@ ${project.version} - - - org.apache.logging.log4j - log4j-core - compile - - com.fasterxml.jackson.core diff --git a/hudi-utilities/pom.xml b/hudi-utilities/pom.xml index b6a5495e15bfa..a4690fd3f9f93 100644 --- a/hudi-utilities/pom.xml +++ b/hudi-utilities/pom.xml @@ -203,8 +203,7 @@ org.apache.logging.log4j - log4j-core - compile + log4j-1.2-api diff --git a/packaging/hudi-integ-test-bundle/pom.xml b/packaging/hudi-integ-test-bundle/pom.xml index 9f9193b5eb347..98226700e92af 100644 --- a/packaging/hudi-integ-test-bundle/pom.xml +++ b/packaging/hudi-integ-test-bundle/pom.xml @@ -645,22 +645,27 @@ httpcore + org.apache.logging.log4j log4j-api + compile org.apache.logging.log4j log4j-core + compile org.apache.logging.log4j log4j-1.2-api + compile org.slf4j slf4j-api ${slf4j.version} + compile diff --git a/packaging/hudi-kafka-connect-bundle/pom.xml b/packaging/hudi-kafka-connect-bundle/pom.xml index 357cc4ceba3bd..cb63e7a5f2e25 100644 --- a/packaging/hudi-kafka-connect-bundle/pom.xml +++ b/packaging/hudi-kafka-connect-bundle/pom.xml @@ -281,20 +281,6 @@ hudi-kafka-connect ${project.version} compile - - - org.apache.logging.log4j - log4j-api - - - org.apache.logging.log4j - log4j-core - - - org.apache.logging.log4j - log4j-1.2-api - - org.apache.hudi diff --git a/pom.xml b/pom.xml index 7c55aecefced5..b5c9116a97911 100644 --- a/pom.xml +++ b/pom.xml @@ -613,10 +613,15 @@ + org.apache.logging.log4j log4j-api ${log4j2.version} + provided org.apache.logging.log4j @@ -628,21 +633,25 @@ org.apache.logging.log4j log4j-1.2-api ${log4j2.version} + provided org.apache.logging.log4j log4j-slf4j-impl ${log4j2.version} + provided org.slf4j slf4j-api ${slf4j.version} + provided org.slf4j jul-to-slf4j ${slf4j.version} + provided From c74376ab2e3028e2b04d1470a1f7e97099ecd7c8 Mon Sep 17 00:00:00 2001 From: Alexey Kudinkin Date: Wed, 7 Sep 2022 21:02:43 -0700 Subject: [PATCH 2/5] Cleaned up testing resources --- .../resources/log4j-surefire-quiet.properties | 30 ------------------ .../test/resources/log4j-surefire.properties | 31 ------------------- 2 files changed, 61 deletions(-) delete mode 100644 hudi-spark-datasource/hudi-spark3.3.x/src/test/resources/log4j-surefire-quiet.properties delete mode 100644 hudi-spark-datasource/hudi-spark3.3.x/src/test/resources/log4j-surefire.properties diff --git a/hudi-spark-datasource/hudi-spark3.3.x/src/test/resources/log4j-surefire-quiet.properties b/hudi-spark-datasource/hudi-spark3.3.x/src/test/resources/log4j-surefire-quiet.properties deleted file mode 100644 index ca0a50c84270c..0000000000000 --- a/hudi-spark-datasource/hudi-spark3.3.x/src/test/resources/log4j-surefire-quiet.properties +++ /dev/null @@ -1,30 +0,0 @@ -### -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -### -log4j.rootLogger=WARN, CONSOLE -log4j.logger.org.apache.hudi=DEBUG -log4j.logger.org.apache.hadoop.hbase=ERROR - -# CONSOLE is set to be a ConsoleAppender. -log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender -# CONSOLE uses PatternLayout. -log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout -log4j.appender.CONSOLE.layout.ConversionPattern=[%-5p] %d %c %x - %m%n -log4j.appender.CONSOLE.filter.a=org.apache.log4j.varia.LevelRangeFilter -log4j.appender.CONSOLE.filter.a.AcceptOnMatch=true -log4j.appender.CONSOLE.filter.a.LevelMin=WARN -log4j.appender.CONSOLE.filter.a.LevelMax=FATAL diff --git a/hudi-spark-datasource/hudi-spark3.3.x/src/test/resources/log4j-surefire.properties b/hudi-spark-datasource/hudi-spark3.3.x/src/test/resources/log4j-surefire.properties deleted file mode 100644 index 14bbb089724c8..0000000000000 --- a/hudi-spark-datasource/hudi-spark3.3.x/src/test/resources/log4j-surefire.properties +++ /dev/null @@ -1,31 +0,0 @@ -### -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -### -log4j.rootLogger=WARN, CONSOLE -log4j.logger.org.apache=INFO -log4j.logger.org.apache.hudi=DEBUG -log4j.logger.org.apache.hadoop.hbase=ERROR - -# CONSOLE is set to be a ConsoleAppender. -log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender -# CONSOLE uses PatternLayout. -log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout -log4j.appender.CONSOLE.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n -log4j.appender.CONSOLE.filter.a=org.apache.log4j.varia.LevelRangeFilter -log4j.appender.CONSOLE.filter.a.AcceptOnMatch=true -log4j.appender.CONSOLE.filter.a.LevelMin=WARN -log4j.appender.CONSOLE.filter.a.LevelMax=FATAL From 2de5e1b9a6861f23ab0886d52709abc8760e96bb Mon Sep 17 00:00:00 2001 From: Alexey Kudinkin Date: Thu, 8 Sep 2022 19:56:03 -0700 Subject: [PATCH 3/5] Fixed missing bridge/API modules in "hudi-tests-common" --- hudi-tests-common/pom.xml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/hudi-tests-common/pom.xml b/hudi-tests-common/pom.xml index e66569c64de39..bd273201aa535 100644 --- a/hudi-tests-common/pom.xml +++ b/hudi-tests-common/pom.xml @@ -45,23 +45,39 @@ - + + + + org.apache.logging.log4j + log4j-1.2-api + compile + + + + org.apache.logging.log4j + log4j-api + compile + + org.apache.logging.log4j log4j-core compile - + org.apache.logging.log4j log4j-slf4j-impl compile + org.slf4j jul-to-slf4j compile + org.junit.jupiter From 889eae2543ff3ae305302e54b1d320e1796f8e05 Mon Sep 17 00:00:00 2001 From: Alexey Kudinkin Date: Thu, 8 Sep 2022 19:56:33 -0700 Subject: [PATCH 4/5] Missing dep on "hudi-tests-common" --- hudi-spark-datasource/hudi-spark3.2.x/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hudi-spark-datasource/hudi-spark3.2.x/pom.xml b/hudi-spark-datasource/hudi-spark3.2.x/pom.xml index 77da0000d45fc..45064515217d1 100644 --- a/hudi-spark-datasource/hudi-spark3.2.x/pom.xml +++ b/hudi-spark-datasource/hudi-spark3.2.x/pom.xml @@ -248,6 +248,14 @@ + + + org.apache.hudi + hudi-tests-common + ${project.version} + test + + org.json4s json4s-jackson_${scala.binary.version} From cf25a4e0d37980de4284afe841eced2f205b97a5 Mon Sep 17 00:00:00 2001 From: Alexey Kudinkin Date: Thu, 8 Sep 2022 20:02:26 -0700 Subject: [PATCH 5/5] Cleaned up invalid "log4j-core" deps --- hudi-examples/hudi-examples-spark/pom.xml | 5 ---- hudi-integ-test/pom.xml | 7 ------ hudi-kafka-connect/pom.xml | 13 ----------- hudi-sync/hudi-adb-sync/pom.xml | 7 ------ hudi-sync/hudi-datahub-sync/pom.xml | 7 ------ packaging/hudi-integ-test-bundle/pom.xml | 23 ------------------- packaging/hudi-timeline-server-bundle/pom.xml | 7 ------ 7 files changed, 69 deletions(-) diff --git a/hudi-examples/hudi-examples-spark/pom.xml b/hudi-examples/hudi-examples-spark/pom.xml index 4ac90cce1cf87..6e2b2f4069353 100644 --- a/hudi-examples/hudi-examples-spark/pom.xml +++ b/hudi-examples/hudi-examples-spark/pom.xml @@ -244,11 +244,6 @@ - - - org.apache.logging.log4j - log4j-core - diff --git a/hudi-integ-test/pom.xml b/hudi-integ-test/pom.xml index 120059ddbcb4e..911daada76767 100644 --- a/hudi-integ-test/pom.xml +++ b/hudi-integ-test/pom.xml @@ -169,13 +169,6 @@ log4j-1.2-api - - - org.apache.logging.log4j - log4j-core - compile - - org.apache.hudi diff --git a/hudi-kafka-connect/pom.xml b/hudi-kafka-connect/pom.xml index d0b81d1ed88c9..7a0bf7ac07c97 100644 --- a/hudi-kafka-connect/pom.xml +++ b/hudi-kafka-connect/pom.xml @@ -153,19 +153,6 @@ protobuf-java ${proto.version} - - - - - org.apache.logging.log4j - log4j-1.2-api - - - - org.apache.logging.log4j - log4j-core - compile - diff --git a/hudi-sync/hudi-adb-sync/pom.xml b/hudi-sync/hudi-adb-sync/pom.xml index e905927136007..dd15ebed3d165 100644 --- a/hudi-sync/hudi-adb-sync/pom.xml +++ b/hudi-sync/hudi-adb-sync/pom.xml @@ -110,13 +110,6 @@ slf4j-api - - - org.apache.logging.log4j - log4j-core - compile - - org.apache.parquet parquet-avro diff --git a/hudi-sync/hudi-datahub-sync/pom.xml b/hudi-sync/hudi-datahub-sync/pom.xml index 08b13b55fbb8c..522c05e63659d 100644 --- a/hudi-sync/hudi-datahub-sync/pom.xml +++ b/hudi-sync/hudi-datahub-sync/pom.xml @@ -68,13 +68,6 @@ ${http.version} - - - org.apache.logging.log4j - log4j-core - compile - - org.apache.parquet parquet-avro diff --git a/packaging/hudi-integ-test-bundle/pom.xml b/packaging/hudi-integ-test-bundle/pom.xml index 98226700e92af..84aee680a6e9b 100644 --- a/packaging/hudi-integ-test-bundle/pom.xml +++ b/packaging/hudi-integ-test-bundle/pom.xml @@ -645,29 +645,6 @@ httpcore - - - org.apache.logging.log4j - log4j-api - compile - - - org.apache.logging.log4j - log4j-core - compile - - - org.apache.logging.log4j - log4j-1.2-api - compile - - - org.slf4j - slf4j-api - ${slf4j.version} - compile - - org.apache.hadoop hadoop-mapreduce-client-common diff --git a/packaging/hudi-timeline-server-bundle/pom.xml b/packaging/hudi-timeline-server-bundle/pom.xml index a8a0253a4adeb..0a2a3b50f0fad 100644 --- a/packaging/hudi-timeline-server-bundle/pom.xml +++ b/packaging/hudi-timeline-server-bundle/pom.xml @@ -42,13 +42,6 @@ ${project.version} - - - org.apache.logging.log4j - log4j-core - compile - - com.fasterxml.jackson.core