1
0

[MINOR] Add maven profile to support skipping shade sources jars (#2358)

Co-authored-by: Xi Chen <chenxi07@qiyi.com>
This commit is contained in:
jshmchenxi
2021-01-04 12:19:48 +08:00
committed by GitHub
parent ff8313caf1
commit c3e9243ea1
8 changed files with 20 additions and 7 deletions

13
pom.xml
View File

@@ -139,6 +139,7 @@
<jacoco.version>0.8.5</jacoco.version>
<presto.bundle.bootstrap.scope>compile</presto.bundle.bootstrap.scope>
<presto.bundle.bootstrap.shade.prefix>org.apache.hudi.</presto.bundle.bootstrap.shade.prefix>
<shadeSources>true</shadeSources>
</properties>
<scm>
@@ -1367,6 +1368,18 @@
</property>
</activation>
</profile>
<profile>
<id>skipShadeSources</id>
<properties>
<shadeSources>false</shadeSources>
</properties>
<activation>
<property>
<name>skipShadeSources</name>
</property>
</activation>
</profile>
</profiles>
</project>