aboutsummaryrefslogtreecommitdiff
path: root/mllib
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 /mllib
parent7db916596144a8b9e55fabf859d921a093d3c59f (diff)
downloadspark-09ed7ddfa0ef8dde12304a26be776232cadc8b1e.tar.gz
spark-09ed7ddfa0ef8dde12304a26be776232cadc8b1e.tar.bz2
spark-09ed7ddfa0ef8dde12304a26be776232cadc8b1e.zip
Use scala.binary.version in POMs
Diffstat (limited to 'mllib')
-rw-r--r--mllib/pom.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/mllib/pom.xml b/mllib/pom.xml
index 228f8c029b..dda3900afe 100644
--- a/mllib/pom.xml
+++ b/mllib/pom.xml
@@ -34,7 +34,7 @@
<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>
@@ -48,12 +48,12 @@
</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>
<dependency>
@@ -63,8 +63,8 @@
</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.scalatest</groupId>