Created
January 4, 2017 02:51
-
-
Save iha2/bb4cc32e0ade4dac6936d564f635e010 to your computer and use it in GitHub Desktop.
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 := "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