Skip to content

Commit

Permalink
Provide a mechanism to disable uploading distribution packages (apach…
Browse files Browse the repository at this point in the history
…e#3977)

*Motivation*

Currently all the distribution packages are very large. We should provide a way to skip uploading distribution packages.
  • Loading branch information
sijie authored Apr 8, 2019
1 parent de24ad7 commit 8365808
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

0 comments on commit 8365808

Please sign in to comment.