You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by aa...@apache.org on 2021/10/20 05:31:12 UTC

[hadoop] branch branch-3.2.3 updated: HADOOP-17971. Exclude IBM Java security classes from being shaded/relocated. (#3567)

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

aajisaka pushed a commit to branch branch-3.2.3
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-3.2.3 by this push:
     new 6ecaa0a  HADOOP-17971. Exclude IBM Java security classes from being shaded/relocated. (#3567)
6ecaa0a is described below

commit 6ecaa0ac8bdb9ab80c245f148382c584bd8a03e0
Author: Nicholas Marion <nm...@us.ibm.com>
AuthorDate: Wed Oct 20 01:26:12 2021 -0400

    HADOOP-17971. Exclude IBM Java security classes from being shaded/relocated. (#3567)
    
    Signed-off-by: Akira Ajisaka <aa...@apache.org>
    (cherry picked from commit 3e1135469eec67a8bfbe60feeb41a25aea013596)
    (cherry picked from commit 87869c6c266a8fb6b66eccffd81d3dabab909218)
---
 hadoop-client-modules/hadoop-client-api/pom.xml         | 2 ++
 hadoop-client-modules/hadoop-client-minicluster/pom.xml | 2 ++
 hadoop-client-modules/hadoop-client-runtime/pom.xml     | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/hadoop-client-modules/hadoop-client-api/pom.xml b/hadoop-client-modules/hadoop-client-api/pom.xml
index d080871..859749f 100644
--- a/hadoop-client-modules/hadoop-client-api/pom.xml
+++ b/hadoop-client-modules/hadoop-client-api/pom.xml
@@ -165,6 +165,8 @@
                         <exclude>com/sun/security/**/*</exclude>
                         <exclude>com/sun/jndi/**/*</exclude>
                         <exclude>com/sun/management/**/*</exclude>
+                        <exclude>com/ibm/security/*</exclude>
+                        <exclude>com/ibm/security/**/*</exclude>
                       </excludes>
                     </relocation>
                     <relocation>
diff --git a/hadoop-client-modules/hadoop-client-minicluster/pom.xml b/hadoop-client-modules/hadoop-client-minicluster/pom.xml
index 4dd6354..ef6668e 100644
--- a/hadoop-client-modules/hadoop-client-minicluster/pom.xml
+++ b/hadoop-client-modules/hadoop-client-minicluster/pom.xml
@@ -874,6 +874,8 @@
                         <exclude>com/sun/security/**/*</exclude>
                         <exclude>com/sun/jndi/**/*</exclude>
                         <exclude>com/sun/management/**/*</exclude>
+                        <exclude>com/ibm/security/*</exclude>
+                        <exclude>com/ibm/security/**/*</exclude>
                       </excludes>
                     </relocation>
                     <relocation>
diff --git a/hadoop-client-modules/hadoop-client-runtime/pom.xml b/hadoop-client-modules/hadoop-client-runtime/pom.xml
index aa3ee42..65b9e78 100644
--- a/hadoop-client-modules/hadoop-client-runtime/pom.xml
+++ b/hadoop-client-modules/hadoop-client-runtime/pom.xml
@@ -275,6 +275,8 @@
                         <exclude>com/sun/security/**/*</exclude>
                         <exclude>com/sun/jndi/**/*</exclude>
                         <exclude>com/sun/management/**/*</exclude>
+                        <exclude>com/ibm/security/*</exclude>
+                        <exclude>com/ibm/security/**/*</exclude>
                       </excludes>
                     </relocation>
                     <relocation>

---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org