HBASE-22268 Exclude javax.activation coming from Hadoop 3.2+ from shaded artifacts
Signed-off-by: Sean Busbey <busbey@apache.org>
This commit is contained in:
parent
7154ea7114
commit
ce1a96f2f6
|
@ -56,6 +56,8 @@
|
|||
<excludes>
|
||||
<!-- exclude J2EE modules that come in for JDK11+ -->
|
||||
<exclude>javax.annotation:javax.annotation-api</exclude>
|
||||
<!-- exclude J2EE modules that come in for JDK11+ (since hadoop-3.2.0) -->
|
||||
<exclude>javax.activation:javax.activation-api</exclude>
|
||||
<!--
|
||||
Tell the shade plugin that in this case we want to include hadoop
|
||||
by leaving out the exclude.
|
||||
|
|
|
@ -134,6 +134,8 @@
|
|||
<excludes>
|
||||
<!-- exclude J2EE modules that come in for JDK11+ -->
|
||||
<exclude>javax.annotation:javax.annotation-api</exclude>
|
||||
<!-- exclude J2EE modules that come in for JDK11+ (since hadoop-3.2.0) -->
|
||||
<exclude>javax.activation:javax.activation-api</exclude>
|
||||
<!-- default to excluding Hadoop, have module that want
|
||||
to include it redefine the exclude list -->
|
||||
<exclude>org.apache.hadoop:*</exclude>
|
||||
|
|
Loading…
Reference in New Issue