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>
|
<properties>
|
||||||
<!-- Don't make a test-jar -->
|
<!-- Don't make a test-jar -->
|
||||||
<maven.test.skip>true</maven.test.skip>
|
<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>
|
<license.bundles.dependencies>true</license.bundles.dependencies>
|
||||||
</properties>
|
</properties>
|
||||||
<modules>
|
<modules>
|
||||||
|
@ -113,10 +115,11 @@
|
||||||
<goal>shade</goal>
|
<goal>shade</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<createSourcesJar>false</createSourcesJar>
|
||||||
<shadedArtifactAttached>false</shadedArtifactAttached>
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
||||||
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
|
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
|
||||||
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
|
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
|
||||||
<shadeTestJar>true</shadeTestJar>
|
<shadeTestJar>false</shadeTestJar>
|
||||||
<artifactSet>
|
<artifactSet>
|
||||||
<excludes>
|
<excludes>
|
||||||
<exclude>org.apache.hbase:hbase-resource-bundle</exclude>
|
<exclude>org.apache.hbase:hbase-resource-bundle</exclude>
|
||||||
|
|
Loading…
Reference in New Issue