Skip to content

Instantly share code, notes, and snippets.

@pomadchin
Created May 4, 2015 19:33
Show Gist options
  • Save pomadchin/7445a086a81855a04a74 to your computer and use it in GitHub Desktop.
Save pomadchin/7445a086a81855a04a74 to your computer and use it in GitHub Desktop.
Spray-Spark example
// val akkaV = "2.2.3-shaded-protobuf"
val akkaV = "2.3.4-spark"
val sprayV = "1.2.2"
Seq(
"io.spray" % "spray-can" % sprayV excludeAll ExclusionRule("com.typesafe.akka"),
"io.spray" % "spray-routing" % sprayV excludeAll ExclusionRule("com.typesafe.akka"),
"io.spray" % "spray-caching" % sprayV excludeAll ExclusionRule("com.typesafe.akka"),
"io.spray" %% "spray-json" % "1.2.6" excludeAll ExclusionRule("com.typesafe.akka"),
"org.spark-project.akka" %% "akka-actor" % akkaV,
"org.spark-project.akka" %% "akka-remote" % akkaV,
"org.spark-project.akka" %% "akka-slf4j" % akkaV,
"org.spark-project.akka" %% "akka-testkit" % akkaV % "test"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment