HBASE-14249 shaded jar modules create spurious source and test jars with incorrect LICENSE/NOTICE info
Signed-off-by: Sean Busbey <busbey@apache.org> Amending-Author: Sean Busbey <busbey@apache.org>
This commit is contained in:
parent
d4c99fc633
commit
610dbc0f5e
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue