Update Scala version dependency to 2.9.2

This commit is contained in:
Matei Zaharia 2012-09-24 14:12:48 -07:00
parent f855e4fad2
commit 1f539aa473
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ object SparkBuild extends Build {
def sharedSettings = Defaults.defaultSettings ++ Seq(
organization := "org.spark-project",
version := "0.6.0-SNAPSHOT",
scalaVersion := "2.9.1",
scalaVersion := "2.9.2",
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,

2
run
View file

@ -1,6 +1,6 @@
#!/bin/bash
SCALA_VERSION=2.9.1
SCALA_VERSION=2.9.2
# Figure out where the Scala framework is installed
FWDIR="$(cd `dirname $0`; pwd)"