aboutsummaryrefslogtreecommitdiff
path: root/project/SparkBuild.scala
diff options
context:
space:
mode:
authorIsmael Juma <ismael@juma.me.uk>2011-08-31 10:43:05 +0100
committerIsmael Juma <ismael@juma.me.uk>2011-08-31 10:43:05 +0100
commit483f724d6229b33179d9cf41dd4e3fd17aa54aee (patch)
treea000112fbcc4f2a157e981963e2800beb43d1aee /project/SparkBuild.scala
parent10697402648696827fe0782b031456e38657a9bb (diff)
downloadspark-483f724d6229b33179d9cf41dd4e3fd17aa54aee.tar.gz
spark-483f724d6229b33179d9cf41dd4e3fd17aa54aee.tar.bz2
spark-483f724d6229b33179d9cf41dd4e3fd17aa54aee.zip
Upgrade to Scala 2.9.1.
Interestingly, the version in Maven is 2.9.1, but SBT outputs file to the 2.9.1.final directory inside target. A couple of small changes in SparkIMain were also required. All tests pass and ./spark-shell launches successfully.
Diffstat (limited to 'project/SparkBuild.scala')
-rw-r--r--project/SparkBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index d3a743360a..01e702ab38 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -17,7 +17,7 @@ object SparkBuild extends Build {
def sharedSettings = Defaults.defaultSettings ++ Seq(
organization := "org.spark-project",
version := "0.4-SNAPSHOT",
- scalaVersion := "2.9.0-1",
+ scalaVersion := "2.9.1",
scalacOptions := Seq(/*"-deprecation",*/ "-unchecked", "-optimize"), // -deprecation is too noisy due to usage of old Hadoop API, enable it once that's no longer an issue
unmanagedJars in Compile <<= baseDirectory map { base => (base / "lib" ** "*.jar").classpath },
retrieveManaged := true,