aboutsummaryrefslogtreecommitdiff
path: root/repl
diff options
context:
space:
mode:
authorMark Hamstra <markhamstra@gmail.com>2013-12-15 12:39:58 -0800
committerMark Hamstra <markhamstra@gmail.com>2013-12-15 12:39:58 -0800
commit09ed7ddfa0ef8dde12304a26be776232cadc8b1e (patch)
tree0a4d76764093a12882e346b59db5122b7ab73d0c /repl
parent7db916596144a8b9e55fabf859d921a093d3c59f (diff)
downloadspark-09ed7ddfa0ef8dde12304a26be776232cadc8b1e.tar.gz
spark-09ed7ddfa0ef8dde12304a26be776232cadc8b1e.tar.bz2
spark-09ed7ddfa0ef8dde12304a26be776232cadc8b1e.zip
Use scala.binary.version in POMs
Diffstat (limited to 'repl')
-rw-r--r--repl/pom.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/repl/pom.xml b/repl/pom.xml
index bf06d730d4..b0e7877bbb 100644
--- a/repl/pom.xml
+++ b/repl/pom.xml
@@ -39,18 +39,18 @@
<dependencies>
<dependency>
<groupId>org.apache.spark</groupId>
- <artifactId>spark-core_2.10</artifactId>
+ <artifactId>spark-core_${scala.binary.version}</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
- <artifactId>spark-bagel_2.10</artifactId>
+ <artifactId>spark-bagel_${scala.binary.version}</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
- <artifactId>spark-mllib_2.10</artifactId>
+ <artifactId>spark-mllib_${scala.binary.version}</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
@@ -78,18 +78,18 @@
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
- <artifactId>scalatest_2.10</artifactId>
+ <artifactId>scalatest_${scala.binary.version}</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalacheck</groupId>
- <artifactId>scalacheck_2.10</artifactId>
+ <artifactId>scalacheck_${scala.binary.version}</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
- <outputDirectory>target/scala-2.10/classes</outputDirectory>
- <testOutputDirectory>target/scala-2.10/test-classes</testOutputDirectory>
+ <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>