Skip to content

Instantly share code, notes, and snippets.

@huydx
Created March 26, 2015 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huydx/f042d204087c686bf9b6 to your computer and use it in GitHub Desktop.
Save huydx/f042d204087c686bf9b6 to your computer and use it in GitHub Desktop.
spray-client-example
name := "akka-train"
version := "1.0"
scalaVersion := "2.10.5"
libraryDependencies ++= {
val sprayVersion = "1.3.1"
val akkaVersion = "2.3.9"
Seq(
"io.spray" %% "spray-json" % "1.2.5",
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"io.spray" % "spray-client" % sprayVersion,
"ch.qos.logback" % "logback-classic" % "1.0.7"
)
}
resolvers ++= Seq(
"spray nightlies repo" at "http://nightlies.spray.io",
"spray repo" at "http://repo.spray.io/",
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment