Update version to 2.1-SNAPSHOT

This commit is contained in:
Peter Vlugter 2012-03-05 10:50:54 +13:00
parent fa1cd02eb1
commit 1fd28e429e
36 changed files with 100 additions and 85 deletions

View file

@ -4,7 +4,7 @@ import Keys._
object TutorialBuild extends Build {
lazy val buildSettings = Seq(
organization := "com.typesafe.akka",
version := "2.0-SNAPSHOT",
version := "2.1-SNAPSHOT",
scalaVersion := "2.9.1"
)
@ -13,10 +13,10 @@ object TutorialBuild extends Build {
base = file("."),
settings = Defaults.defaultSettings ++ Seq(
libraryDependencies ++= Seq(
"com.typesafe.akka" % "akka-actor" % "2.0-SNAPSHOT",
"com.typesafe.akka" % "akka-actor" % "2.1-SNAPSHOT",
"junit" % "junit" % "4.5" % "test",
"org.scalatest" % "scalatest_2.9.0" % "1.6.1" % "test",
"com.typesafe.akka" % "akka-testkit" % "2.0-SNAPSHOT" % "test")
"com.typesafe.akka" % "akka-testkit" % "2.1-SNAPSHOT" % "test")
)
)
}
}