Guest User

Untitled

a guest
Aug 3rd, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. scalaVersion := "2.9.1"
  2.  
  3. name := "Akka Training (solutions)"
  4.  
  5. resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
  6.  
  7. {
  8. libraryDependencies ++= Seq("com.typesafe.akka" % "akka-actor" % "2.0",
  9. "com.typesafe.akka" % "akka-remote" % "2.0",
  10. "com.typesafe.akka" % "akka-testkit" % "2.0",
  11. "org.scalatest" %% "scalatest" % "1.6.1" % "test",
  12. "junit" % "junit" % "4.5" % "test")
  13. }
  14.  
  15. scalacOptions += "-deprecation" //We use this to make sure we are not using any deprecated features
Advertisement
Add Comment
Please, Sign In to add comment