Skip to content

Instantly share code, notes, and snippets.

@ivanyu
Created January 17, 2015 17:15
Show Gist options
  • Save ivanyu/9654256bff629546dcad to your computer and use it in GitHub Desktop.
Save ivanyu/9654256bff629546dcad to your computer and use it in GitHub Desktop.
Simple build.sbt with Akka
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