aboutsummaryrefslogtreecommitdiff
path: root/core/pom.xml
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 /core/pom.xml
parent7db916596144a8b9e55fabf859d921a093d3c59f (diff)
downloadspark-09ed7ddfa0ef8dde12304a26be776232cadc8b1e.tar.gz
spark-09ed7ddfa0ef8dde12304a26be776232cadc8b1e.tar.bz2
spark-09ed7ddfa0ef8dde12304a26be776232cadc8b1e.zip
Use scala.binary.version in POMs
Diffstat (limited to 'core/pom.xml')
-rw-r--r--core/pom.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/core/pom.xml b/core/pom.xml
index 3fe48fd2af..cdbaa52731 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -86,7 +86,7 @@
</dependency>
<dependency>
<groupId>com.twitter</groupId>
- <artifactId>chill_2.10</artifactId>
+ <artifactId>chill_${scala.binary.version}</artifactId>
<version>0.3.1</version>
</dependency>
<dependency>
@@ -96,15 +96,15 @@
</dependency>
<dependency>
<groupId>${akka.group}</groupId>
- <artifactId>akka-actor_2.10</artifactId>
+ <artifactId>akka-actor_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>${akka.group}</groupId>
- <artifactId>akka-remote_2.10</artifactId>
+ <artifactId>akka-remote_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>${akka.group}</groupId>
- <artifactId>akka-slf4j_2.10</artifactId>
+ <artifactId>akka-slf4j_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
@@ -112,7 +112,7 @@
</dependency>
<dependency>
<groupId>net.liftweb</groupId>
- <artifactId>lift-json_2.10</artifactId>
+ <artifactId>lift-json_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
@@ -166,12 +166,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>
@@ -191,8 +191,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.apache.maven.plugins</groupId>