HBASE-25792 Filter out o.a.hadoop.thirdparty building shaded jars (#3184)
Need to add to allowed-licenses list too.... Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org> Reviewed-by: Duo Zhang <zhangduo@apache.org> Reviewed-by: Nick Dimiduk <ndimiduk@apache.org>
This commit is contained in:
parent
8856f61986
commit
2382f68b23
|
@ -51,9 +51,8 @@
|
|||
<configuration>
|
||||
<archive>
|
||||
<manifest>
|
||||
<!--Include the Driver class as the 'main'.
|
||||
Executing the jar will then show a list of the basic MR jobs.
|
||||
-->
|
||||
<!--Include the Driver class as the 'main'. Executing the jar will then show a
|
||||
list of the basic MR jobs.-->
|
||||
<mainClass>org/apache/hadoop/hbase/mapreduce/Driver</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
|
|
|
@ -1343,7 +1343,7 @@ You can redistribute it and/or modify it under either the terms of the
|
|||
## See this FAQ link for justifications: https://www.apache.org/legal/resolved.html
|
||||
##
|
||||
## NB: This list is later compared as lower-case. New entries must also be all lower-case
|
||||
#set($non_aggregate_fine = [ 'public domain', 'new bsd license', 'bsd license', 'bsd', 'bsd 2-clause license', 'mozilla public license version 1.1', 'mozilla public license version 2.0', 'creative commons attribution license, version 2.5' ])
|
||||
#set($non_aggregate_fine = [ 'public domain', 'new bsd license', 'bsd license', 'bsd', 'bsd 2-clause license', 'mozilla public license version 1.1', 'mozilla public license version 2.0', 'creative commons attribution license, version 2.5', 'apache-2.0' ])
|
||||
## include LICENSE sections for anything not under ASL2.0
|
||||
#foreach( ${dep} in ${projects} )
|
||||
## if there are no licenses we'll fail the build later, so
|
||||
|
|
|
@ -36,8 +36,7 @@
|
|||
<license.bundles.jquery>true</license.bundles.jquery>
|
||||
</properties>
|
||||
<build>
|
||||
<!-- Make sure resources get added before they are processed
|
||||
by placing this first
|
||||
<!-- Make sure resources get added before they are processed by placing this first
|
||||
-->
|
||||
<resources>
|
||||
<!-- Add the build webabpps to the classpth -->
|
||||
|
|
|
@ -520,6 +520,8 @@
|
|||
<!-- We already concat NOTICE, safe to drop individual ones -->
|
||||
<exclude>LICENSE</exclude>
|
||||
<exclude>NOTICE</exclude>
|
||||
<!-- Remove the shaded guava added in hadoop-3.3.1+-->
|
||||
<exclude>org/apache/hadoop/thirdparty/**/*</exclude>
|
||||
</excludes>
|
||||
</filter>
|
||||
<filter>
|
||||
|
|
Loading…
Reference in New Issue