Upgrade to Scala 2.8.1

This commit is contained in:
Jonas Bonér 2010-11-23 09:20:44 +01:00
parent 86b3df3df1
commit a8f94eb754
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
project.organization=se.scalablesolutions.akka
project.name=akka
project.version=1.0-SNAPSHOT
scala.version=2.8.0
scala.version=2.8.1
sbt.version=0.7.4
def.scala.version=2.7.7
build.scala.versions=2.8.0
build.scala.versions=2.8.1

View file

@ -264,7 +264,7 @@ class AkkaParentProject(info: ProjectInfo) extends DefaultProject(info) {
lazy val junit = "junit" % "junit" % "4.5" % "test" //Common Public License 1.0
lazy val mockito = "org.mockito" % "mockito-all" % "1.8.1" % "test" //MIT
lazy val scalatest = "org.scalatest" % "scalatest" % SCALATEST_VERSION % "test" //ApacheV2
lazy val specs = "org.scala-tools.testing" %% "specs" % "1.6.5" % "test" //MIT
lazy val specs = "org.scala-tools.testing" %% "specs" % "1.6.6" % "test" //MIT
//HBase testing
lazy val hadoop_test = "org.apache.hadoop" % "hadoop-test" % "0.20.2" % "test" //ApacheV2

View file

@ -25,5 +25,5 @@ class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
// Dependencies
// -------------------------------------------------------------------------------------------------------------------
lazy val bnd4sbt = "com.weiglewilczek.bnd4sbt" % "bnd4sbt" % "1.0.0.RC4"
lazy val spdeSbt = "us.technically.spde" % "spde-sbt-plugin" % "0.4.1"
lazy val spdeSbt = "us.technically.spde" % "spde-sbt-plugin" % "0.4.2"
}