aboutsummaryrefslogtreecommitdiff
path: root/assembly
diff options
context:
space:
mode:
authorPrashant Sharma <prashant.s@imaginea.com>2014-09-14 21:17:29 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-09-14 21:17:29 -0700
commitf493f7982b50e3c99e78b649e7c6c5b4313c5ffa (patch)
tree882232f04b0054fd0611db83935093ca039e0ed1 /assembly
parentc243b21a8ba2610266702e00d7d4b5443cb1f687 (diff)
downloadspark-f493f7982b50e3c99e78b649e7c6c5b4313c5ffa.tar.gz
spark-f493f7982b50e3c99e78b649e7c6c5b4313c5ffa.tar.bz2
spark-f493f7982b50e3c99e78b649e7c6c5b4313c5ffa.zip
[SPARK-3452] Maven build should skip publishing artifacts people shouldn...
...'t depend on Publish local in maven term is `install` and publish otherwise is `deploy` So disabled both for following projects. Author: Prashant Sharma <prashant.s@imaginea.com> Closes #2329 from ScrapCodes/SPARK-3452/maven-skip-install and squashes the following commits: 257b79a [Prashant Sharma] [SPARK-3452] Maven build should skip publishing artifacts people shouldn't depend on
Diffstat (limited to 'assembly')
-rw-r--r--assembly/pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 4146168fc8..604b1ab3de 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -88,6 +88,20 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
<!-- Use the shade plugin to create a big JAR with all the dependencies -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>