Skip to content

Instantly share code, notes, and snippets.

@phaller
Created March 8, 2012 17:00
Show Gist options
  • Save phaller/2002073 to your computer and use it in GitHub Desktop.
Save phaller/2002073 to your computer and use it in GitHub Desktop.
scalaVersion := "2.9.1"
name := "Akka Training (solutions)"
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
{
libraryDependencies ++= Seq("com.typesafe.akka" % "akka-actor" % "2.0",
"com.typesafe.akka" % "akka-remote" % "2.0",
"com.typesafe.akka" % "akka-testkit" % "2.0",
"org.scalatest" %% "scalatest" % "1.6.1" % "test",
"junit" % "junit" % "4.5" % "test")
}
scalacOptions += "-deprecation" //We use this to make sure we are not using any deprecated features
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment