You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ec...@apache.org on 2015/12/11 03:54:24 UTC

hbase git commit: HBASE-14745 Shade the last few dependencies in hbase-shaded-client

Repository: hbase
Updated Branches:
  refs/heads/branch-1.2 8953da28c -> 9ed1793c2


HBASE-14745 Shade the last few dependencies in hbase-shaded-client


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/9ed1793c
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/9ed1793c
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/9ed1793c

Branch: refs/heads/branch-1.2
Commit: 9ed1793c28a6702e4940eabb6b17b5049bf4914b
Parents: 8953da2
Author: Elliott Clark <ec...@apache.org>
Authored: Wed Nov 4 13:40:46 2015 -0800
Committer: Elliott Clark <ec...@apache.org>
Committed: Thu Dec 10 18:45:15 2015 -0800

----------------------------------------------------------------------
 hbase-shaded/pom.xml | 28 ++++++++++++++++++++++++++++
 pom.xml              |  3 +++
 2 files changed, 31 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/9ed1793c/hbase-shaded/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-shaded/pom.xml b/hbase-shaded/pom.xml
index 601e499..135dfd4 100644
--- a/hbase-shaded/pom.xml
+++ b/hbase-shaded/pom.xml
@@ -294,12 +294,40 @@
                                         <pattern>org.apache.commons.el</pattern>
                                         <shadedPattern>org.apache.hadoop.hbase.shaded.org.apache.commons.el</shadedPattern>
                                     </relocation>
+                                    <relocation>
+                                        <pattern>org.apache.commons.httpclient</pattern>
+                                        <shadedPattern>org.apache.hadoop.hbase.shaded.org.apache.commons.httpclient</shadedPattern>
+                                    </relocation>
+                                    <relocation>
+                                        <pattern>org.apache.commons.compress</pattern>
+                                        <shadedPattern>org.apache.hadoop.hbase.shaded.org.apache.commons.compress</shadedPattern>
+                                    </relocation>
+                                    <relocation>
+                                        <pattern>org.apache.commons.digester</pattern>
+                                        <shadedPattern>org.apache.hadoop.hbase.shaded.org.apache.commons.digester</shadedPattern>
+                                    </relocation>
+                                    <relocation>
+                                        <pattern>org.apache.commons.codec</pattern>
+                                        <shadedPattern>org.apache.hadoop.hbase.shaded.org.apache.commons.codec</shadedPattern>
+                                    </relocation>
 
                                     <!-- top level net-->
                                     <relocation>
                                         <pattern>net.iharder</pattern>
                                         <shadedPattern>org.apache.hadoop.hbase.shaded.net.iharder</shadedPattern>
                                     </relocation>
+
+                                    <!-- junit -->
+                                    <relocation>
+                                        <pattern>junit</pattern>
+                                        <shadedPattern>org.apache.hadoop.hbase.shaded.junit</shadedPattern>
+                                    </relocation>
+                                    <relocation>
+                                        <pattern>org.junit</pattern>
+                                        <shadedPattern>org.apache.hadoop.hbase.shaded.org.junit</shadedPattern>
+                                    </relocation>
+
+
                                 </relocations>
                                 <transformers>
                                   <!-- Need to filter out some extraneous license files.

http://git-wip-us.apache.org/repos/asf/hbase/blob/9ed1793c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index bae0154..1f45a68 100644
--- a/pom.xml
+++ b/pom.xml
@@ -758,6 +758,9 @@
               <exclude>.svn/**</exclude>
               <exclude>**/.settings/**</exclude>
               <exclude>**/patchprocess/**</exclude>
+              <exclude>src/main/site/resources/repo/**</exclude>
+              <exclude>**/dependency-reduced-pom.xml</exclude>
+              <exclude>**/rat.txt</exclude>
             </excludes>
           </configuration>
         </plugin>