I\'m using the following:
That was a lot of reconfiguration for me to get it to work, here is my (NOW) working build.sbt using, sbt 0.13.15 and scala 2.10.4 and jdk 1.8.1_131
name := "ScalaTelemetryManagerApi"
version := "1.0"
scalaVersion := "2.10.4"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
libraryDependencies ++= {
Seq(
"io.spray" % "spray-can" % "1.3.1",
"io.spray" % "spray-routing" % "1.3.1",
"io.spray" % "spray-testkit" % "1.3.1",
"com.typesafe.akka" %% "akka-actor" % "2.3.2",
"com.typesafe.akka" %% "akka-testkit" % "2.3.2",
"org.specs2" %% "specs2-core" % "3.6",
"com.github.seratch" %% "awscala" % "0.5.+",
"org.scalaz" %% "scalaz-core" % "7.2.14"
)
}
resolvers += "Scalaz Bintray Repo" at "https://dl.bintray.com/scalaz/releases"
Revolver.settings
retrieveManaged := true