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:30:29 UTC

[hadoop] branch branch-3.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.3
in repository https://gitbox.apache.org/repos/asf/hadoop.git


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

commit 0e79681ccf183d51c55e366e0c6ba491c6fbadd1
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)
---
 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 2ab3f3f..1d54bcd 100644
--- a/hadoop-client-modules/hadoop-client-api/pom.xml
+++ b/hadoop-client-modules/hadoop-client-api/pom.xml
@@ -179,6 +179,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 723663d..418e21f 100644
--- a/hadoop-client-modules/hadoop-client-minicluster/pom.xml
+++ b/hadoop-client-modules/hadoop-client-minicluster/pom.xml
@@ -919,6 +919,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 db6c1ec..2ad7b8f 100644
--- a/hadoop-client-modules/hadoop-client-runtime/pom.xml
+++ b/hadoop-client-modules/hadoop-client-runtime/pom.xml
@@ -288,6 +288,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