diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala index 1c427473ae..831fac65d5 100644 --- a/project/SparkBuild.scala +++ b/project/SparkBuild.scala @@ -33,7 +33,7 @@ object SparkBuild extends Build { def sharedSettings = Defaults.defaultSettings ++ Seq( organization := "org.spark-project", - version := "0.6.2-SNAPSHOT", + version := "0.6.2", 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 }, @@ -75,16 +75,13 @@ object SparkBuild extends Build { ), -/* - publishTo <<= version { (v: String) => - val nexus = "https://oss.sonatype.org/" - if (v.trim.endsWith("SNAPSHOT")) - Some("sonatype-snapshots" at nexus + "content/repositories/snapshots") - else - Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2") - }, - -*/ + //publishTo <<= version { (v: String) => + // val nexus = "https://oss.sonatype.org/" + // if (v.trim.endsWith("SNAPSHOT")) + // Some("sonatype-snapshots" at nexus + "content/repositories/snapshots") + // else + // Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2") + //}, libraryDependencies ++= Seq( "org.eclipse.jetty" % "jetty-server" % "7.5.3.v20111011", diff --git a/repl/src/main/scala/spark/repl/SparkILoop.scala b/repl/src/main/scala/spark/repl/SparkILoop.scala index df3105fb73..d4cc3b48ed 100644 --- a/repl/src/main/scala/spark/repl/SparkILoop.scala +++ b/repl/src/main/scala/spark/repl/SparkILoop.scala @@ -200,7 +200,7 @@ class SparkILoop(in0: Option[BufferedReader], val out: PrintWriter, val master: ____ __ / __/__ ___ _____/ /__ _\ \/ _ \/ _ `/ __/ '_/ - /___/ .__/\_,_/_/ /_/\_\ version 0.6.2-SNAPSHOT + /___/ .__/\_,_/_/ /_/\_\ version 0.6.2 /_/ """) import Properties._