aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Wendell <patrick@databricks.com>2015-01-17 23:15:12 -0800
committerPatrick Wendell <patrick@databricks.com>2015-01-17 23:15:12 -0800
commitad16da1bcc500d0fe594853cd00470dc34b007fa (patch)
tree0767f42ddd8068202c06cb00b4ed72f287d180da
parente12b5b61c1715382293cb71389682691a74d1788 (diff)
downloadspark-ad16da1bcc500d0fe594853cd00470dc34b007fa.tar.gz
spark-ad16da1bcc500d0fe594853cd00470dc34b007fa.tar.bz2
spark-ad16da1bcc500d0fe594853cd00470dc34b007fa.zip
[HOTFIX]: Minor clean up regarding skipped artifacts in build files.
There are two relevant 'skip' configurations in the build, the first is for "mvn install" and the second is for "mvn deploy". As of 1.2, we actually use "mvn install" to generate our deployed artifcts, because we have some customization of the nexus upload due to having to cross compile for Scala 2.10 and 2.11. There is no reason to have differents settings for these values, this patch simply cleans this up for the repl/ and yarn/ projects. Author: Patrick Wendell <patrick@databricks.com> Closes #4080 from pwendell/master and squashes the following commits: e21b78b [Patrick Wendell] [HOTFIX]: Minor clean up regarding skipped artifacts in build files.
-rw-r--r--repl/pom.xml7
-rw-r--r--yarn/pom.xml10
2 files changed, 0 insertions, 17 deletions
diff --git a/repl/pom.xml b/repl/pom.xml
index 0bc8bccf90..ae7c31aef4 100644
--- a/repl/pom.xml
+++ b/repl/pom.xml
@@ -92,13 +92,6 @@
<outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
<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>
<!-- Include a source dir depending on the Scala version -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
diff --git a/yarn/pom.xml b/yarn/pom.xml
index b86857db7b..7595549e4b 100644
--- a/yarn/pom.xml
+++ b/yarn/pom.xml
@@ -123,16 +123,6 @@
</profiles>
<build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
-
<outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
<testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
</build>