You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2015/08/20 17:22:19 UTC

hbase git commit: HBASE-14249 shaded jar modules create spurious source and test jars with incorrect LICENSE/NOTICE info

Repository: hbase
Updated Branches:
  refs/heads/master dc9c2efcc -> e917787d9


HBASE-14249 shaded jar modules create spurious source and test jars with incorrect LICENSE/NOTICE info

Signed-off-by: Sean Busbey <bu...@apache.org>
Amending-Author: Sean Busbey <bu...@apache.org>


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

Branch: refs/heads/master
Commit: e917787d9782961976c6489fb4a1dba19984b0ca
Parents: dc9c2ef
Author: Andrew Purtell <ap...@apache.org>
Authored: Wed Aug 19 15:41:48 2015 -0700
Committer: Sean Busbey <bu...@cloudera.com>
Committed: Thu Aug 20 01:40:55 2015 -0500

----------------------------------------------------------------------
 hbase-shaded/pom.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/e917787d/hbase-shaded/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-shaded/pom.xml b/hbase-shaded/pom.xml
index 06eec45..78b8270 100644
--- a/hbase-shaded/pom.xml
+++ b/hbase-shaded/pom.xml
@@ -33,6 +33,8 @@
     <properties>
       <!-- Don't make a test-jar -->
       <maven.test.skip>true</maven.test.skip>
+      <!-- Don't make a source-jar -->
+      <source.skip>true</source.skip>
       <license.bundles.dependencies>true</license.bundles.dependencies>
     </properties>
     <modules>
@@ -113,10 +115,11 @@
                                 <goal>shade</goal>
                             </goals>
                             <configuration>
+                                <createSourcesJar>false</createSourcesJar>
                                 <shadedArtifactAttached>false</shadedArtifactAttached>
                                 <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
                                 <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
-                                <shadeTestJar>true</shadeTestJar>
+                                <shadeTestJar>false</shadeTestJar>
                                 <artifactSet>
                                     <excludes>
                                         <exclude>org.apache.hbase:hbase-resource-bundle</exclude>