Changes to run script and README to deal with updated Scala version and
with Mesos being in Maven
diff --git a/README.md b/README.md
index a0f42d5..8cc1d00a 100644
--- a/README.md
+++ b/README.md
@@ -12,10 +12,8 @@
 
 ## Building
 
-Spark requires Scala 2.9.1. This version has been tested with 2.9.1.final.
-
-The project is built using Simple Build Tool (SBT), which is packaged with it.
-To build Spark and its example programs, run:
+Spark requires Scala 2.9.2. The project is built using Simple Build Tool (SBT),
+which is packaged with it. To build Spark and its example programs, run:
 
     sbt/sbt package
 
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 5c990e5..02ed0f1 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -59,7 +59,7 @@
         <developer>
           <id>matei</id>
           <name>Matei Zaharia</name>
-          <email>matei.zaharia@gmail.com</email>
+          <email>matei@eecs.berkeley.edu</email>
           <url>http://www.cs.berkeley.edu/~matei</url>
           <organization>U.C. Berkeley Computer Science</organization>
           <organizationUrl>http://www.cs.berkeley.edu/</organizationUrl>
diff --git a/run b/run
index 093a9a5..91c49af 100755
--- a/run
+++ b/run
@@ -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)"
@@ -48,9 +48,6 @@
 CLASSPATH+=":$CORE_DIR/target/scala-$SCALA_VERSION/classes"
 CLASSPATH+=":$REPL_DIR/target/scala-$SCALA_VERSION/classes"
 CLASSPATH+=":$EXAMPLES_DIR/target/scala-$SCALA_VERSION/classes"
-for jar in `find $CORE_DIR/lib -name '*jar'`; do
-  CLASSPATH+=":$jar"
-done
 for jar in `find $FWDIR/lib_managed/jars -name '*jar'`; do
   CLASSPATH+=":$jar"
 done