Skip to content

Instantly share code, notes, and snippets.

@iha2
Created January 4, 2017 02:51
Show Gist options
  • Save iha2/bb4cc32e0ade4dac6936d564f635e010 to your computer and use it in GitHub Desktop.
Save iha2/bb4cc32e0ade4dac6936d564f635e010 to your computer and use it in GitHub Desktop.
name := "HiClusterer"
version := "1.0"
scalaVersion := "2.10.6"
resolvers += "spray repo" at "http://repo.spray.io"
resolvers += "spray nightlies" at "http://nightlies.spray.io"
libraryDependencies ++= {
val akkaVersion = "2.3.6"
val sprayVersion = "1.3.1"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"io.spray" % "spray-can" % sprayVersion,
"io.spray" % "spray-client" % sprayVersion,
"io.spray" % "spray-routing" % sprayVersion,
"io.spray" % "spray-testkit" % "1.1.0" % "test",
"org.specs2" % "specs2-core_2.10" % "3.8.1" % "test")
}
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-Xlint",
"-Ywarn-dead-code",
"-language:_",
"-target:jvm-1.7",
"-encoding", "UTF-8"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment