HBASE-22087 Update LICENSE/shading for the dependencies from the latest Hadoop trunk.

When building with latest hadoop:
* JLine is now in the assembly so update licensing
* shaded client w/hadoop needs relocation for a couple new hadoop transitives

Co-authored-by: Sean Busbey <busbey@apache.org>
Signed-off-by: Sean Busbey <busbey@apache.org>
This commit is contained in:
Wei-Chiu Chuang 2019-03-25 11:58:47 +01:00 committed by Sean Busbey
parent 5c1af95c0a
commit 962585d376
2 changed files with 37 additions and 0 deletions

View File

@ -977,6 +977,24 @@ Copyright 2010 FasterXML.com
</project>
</supplement>
<supplement>
<project> <!-- hadoop.profile=3.0 from hadoop-3.3.0 -->
<groupId>org.jline</groupId>
<artifactId>jline</artifactId>
<version>3.9.0</version>
<licenses>
<license>
<name>BSD license</name>
<url>https://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
<comments>
Copyright (c) 2002-2018, the original author or authors.
</comments>
</license>
</licenses>
</project>
</supplement>
<supplement>
<project>
<groupId>org.jruby.jcodings</groupId>

View File

@ -214,6 +214,11 @@
<shadedPattern>${shaded.prefix}.com.zaxxer</shadedPattern>
</relocation>
<!-- dnsjava -->
<relocation>
<pattern>org.xbill</pattern>
<shadedPattern>${shaded.prefix}.org.xbill</shadedPattern>
</relocation>
<!-- netty family -->
<relocation>
@ -426,6 +431,10 @@
<pattern>org.apache.commons.codec</pattern>
<shadedPattern>${shaded.prefix}.org.apache.commons.codec</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.text</pattern>
<shadedPattern>${shaded.prefix}.org.apache.commons.text</shadedPattern>
</relocation>
<!-- top level net-->
<relocation>
@ -463,6 +472,16 @@
</transformer>
</transformers>
<filters>
<!-- remove utility classes which are not required from dnsjava -->
<filter>
<artifact>dnsjava:dnsjava</artifact>
<excludes>
<exclude>dig*</exclude>
<exclude>jnamed*</exclude>
<exclude>lookup*</exclude>
<exclude>update*</exclude>
</excludes>
</filter>
<filter>
<!-- this is a signed osgi bundle -->
<artifact>org.eclipse.jetty.orbit:javax.servlet.jsp.jstl</artifact>