aboutsummaryrefslogtreecommitdiff
path: root/repl/pom.xml
diff options
context:
space:
mode:
authorPrashant Sharma <prashant.s@imaginea.com>2013-10-08 11:29:40 +0530
committerPrashant Sharma <prashant.s@imaginea.com>2013-10-08 11:29:40 +0530
commit7be75682b931dd52014f3cfdc6887e54583ad0af (patch)
treeb0dd6a28def2562a6f63162034b75f6a8e292278 /repl/pom.xml
parent3e41495288c897ee3d3b31d5f4836b1cf6ba54d9 (diff)
parentea34c521025d3408d44d45ab5c132fd9791794f6 (diff)
downloadspark-7be75682b931dd52014f3cfdc6887e54583ad0af.tar.gz
spark-7be75682b931dd52014f3cfdc6887e54583ad0af.tar.bz2
spark-7be75682b931dd52014f3cfdc6887e54583ad0af.zip
Merge branch 'master' into wip-merge-master
Conflicts: bagel/pom.xml core/pom.xml core/src/test/scala/org/apache/spark/ui/UISuite.scala examples/pom.xml mllib/pom.xml pom.xml project/SparkBuild.scala repl/pom.xml streaming/pom.xml tools/pom.xml In scala 2.10, a shorter representation is used for naming artifacts so changed to shorter scala version for artifacts and made it a property in pom.
Diffstat (limited to 'repl/pom.xml')
-rw-r--r--repl/pom.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/repl/pom.xml b/repl/pom.xml
index d4b1ea10be..ff66493229 100644
--- a/repl/pom.xml
+++ b/repl/pom.xml
@@ -26,7 +26,7 @@
</parent>
<groupId>org.apache.spark</groupId>
- <artifactId>spark-repl</artifactId>
+ <artifactId>spark-repl_${scala-short.version}</artifactId>
<packaging>jar</packaging>
<name>Spark Project REPL</name>
<url>http://spark.incubator.apache.org/</url>
@@ -39,18 +39,18 @@
<dependencies>
<dependency>
<groupId>org.apache.spark</groupId>
- <artifactId>spark-core</artifactId>
+ <artifactId>spark-core_${scala-short.version}</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
- <artifactId>spark-bagel</artifactId>
+ <artifactId>spark-bagel_${scala-short.version}</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
- <artifactId>spark-mllib</artifactId>
+ <artifactId>spark-mllib_${scala-short.version}</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
@@ -103,14 +103,14 @@
<configuration>
<exportAntProperties>true</exportAntProperties>
<tasks>
- <property name="spark.classpath" refid="maven.test.classpath"/>
- <property environment="env"/>
+ <property name="spark.classpath" refid="maven.test.classpath" />
+ <property environment="env" />
<fail message="Please set the SCALA_HOME (or SCALA_LIBRARY_PATH if scala is on the path) environment variables and retry.">
<condition>
<not>
<or>
- <isset property="env.SCALA_HOME"/>
- <isset property="env.SCALA_LIBRARY_PATH"/>
+ <isset property="env.SCALA_HOME" />
+ <isset property="env.SCALA_LIBRARY_PATH" />
</or>
</not>
</condition>