makotan _at_ gmail dot com

冬至そして・・・Akka

Akka2.0のSNAPSHOT版メモ
TutorialBuild.scalaの一部をこんな風に変えると、SNAPSHOTでも試せる。

  lazy val akka = Project(
    id = "akka-tutorial-first",
    base = file("."),
    settings = Defaults.defaultSettings ++ 
    Seq(
        resolvers := 
        Seq("Typesafe SNAPSHOT Repository" at "http://repo.typesafe.com/typesafe/snapshots/")
   ) ++
   Seq(
      libraryDependencies ++= Seq(
        "com.typesafe.akka" % "akka-actor"      % "2.0-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")
    ) 
   
  )