aboutsummaryrefslogtreecommitdiff
path: root/repl
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 /repl
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 'repl')
-rw-r--r--repl/pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/repl/pom.xml b/repl/pom.xml
index fcc5f90d87..af528c8914 100644
--- a/repl/pom.xml
+++ b/repl/pom.xml
@@ -100,6 +100,20 @@
<testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
<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>
+ <plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<configuration>