This is an automated email from the ASF dual-hosted git repository.
sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 8365808 Provide a mechanism to disable uploading distribution
packages (#3977)
8365808 is described below
commit 8365808ae66eafc2bc15c2dfdd4c1e98315c09ec
Author: Sijie Guo <[email protected]>
AuthorDate: Mon Apr 8 20:10:02 2019 +0800
Provide a mechanism to disable uploading distribution packages (#3977)
*Motivation*
Currently all the distribution packages are very large. We should provide a
way to skip uploading distribution packages.
---
distribution/pom.xml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/distribution/pom.xml b/distribution/pom.xml
index fb7b4df..b41aba2 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -38,4 +38,15 @@
<module>io</module>
<module>offloaders</module>
</modules>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>${skipBuildDistribution}</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>