aboutsummaryrefslogtreecommitdiff
path: root/tools/pom.xml
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2014-03-26 18:31:52 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-03-26 18:32:14 -0700
commit1fa48d9422d543827011eec0cdf12d060b78a7c7 (patch)
tree73169d383a787f720e09d501c0d6df15ca9e9c4f /tools/pom.xml
parent3e63d98f09065386901d78c141b0da93cdce0f76 (diff)
downloadspark-1fa48d9422d543827011eec0cdf12d060b78a7c7.tar.gz
spark-1fa48d9422d543827011eec0cdf12d060b78a7c7.tar.bz2
spark-1fa48d9422d543827011eec0cdf12d060b78a7c7.zip
SPARK-1325. The maven build error for Spark Tools
This is just a slight variation on https://github.com/apache/spark/pull/234 and alternative suggestion for SPARK-1325. `scala-actors` is not necessary. `SparkBuild.scala` should be updated to reflect the direct dependency on `scala-reflect` and `scala-compiler`. And the `repl` build, which has the same dependencies, should also be consistent between Maven / SBT. Author: Sean Owen <sowen@cloudera.com> Author: witgo <witgo@qq.com> Closes #240 from srowen/SPARK-1325 and squashes the following commits: 25bd7db [Sean Owen] Add necessary dependencies scala-reflect and scala-compiler to tools. Update repl dependencies, which are similar, to be consistent between Maven / SBT in this regard too.
Diffstat (limited to 'tools/pom.xml')
-rw-r--r--tools/pom.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/pom.xml b/tools/pom.xml
index 11433e596f..ae2ba64e07 100644
--- a/tools/pom.xml
+++ b/tools/pom.xml
@@ -56,6 +56,14 @@
<version>${project.version}</version>
</dependency>
<dependency>
+ <groupId>org.scala-lang</groupId>
+ <artifactId>scala-reflect</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.scala-lang</groupId>
+ <artifactId>scala-compiler</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.binary.version}</artifactId>
<scope>test</scope>