aboutsummaryrefslogtreecommitdiff
path: root/repl
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 /repl
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 'repl')
-rw-r--r--repl/pom.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/repl/pom.xml b/repl/pom.xml
index fc49c8b811..78d2fe13c2 100644
--- a/repl/pom.xml
+++ b/repl/pom.xml
@@ -79,6 +79,11 @@
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
+ <artifactId>scala-reflect</artifactId>
+ <version>${scala.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.scala-lang</groupId>
<artifactId>jline</artifactId>
<version>${scala.version}</version>
</dependency>