Created
January 17, 2015 17:15
-
-
Save ivanyu/9654256bff629546dcad to your computer and use it in GitHub Desktop.
Simple build.sbt with Akka
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name := "project-name" | |
version := "1.0" | |
scalaVersion := "2.11.4" | |
resolvers ++= Seq( | |
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/" | |
) | |
val akkaVersion = "2.3.7" | |
libraryDependencies ++= Seq( | |
"com.typesafe.akka" %% "akka-actor" % akkaVersion, | |
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test" | |
) | |
scalacOptions ++= Seq( | |
"-feature", | |
"-deprecation", | |
"-Xfatal-warnings", | |
"-encoding", "UTF-8" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment