Skip to content

Instantly share code, notes, and snippets.

@krishnabhargav
Created June 16, 2014 01:23
Show Gist options
  • Save krishnabhargav/6b16db792061b0505abf to your computer and use it in GitHub Desktop.
Save krishnabhargav/6b16db792061b0505abf to your computer and use it in GitHub Desktop.
build.sbt for scala + rest calls + json
name := "Places Demo"
version := "0.1"
scalaVersion := "2.10.2"
libraryDependencies ++= Seq(
"net.databinder.dispatch" %% "dispatch-core" % "0.11.1", //Dispatch is a wrapper over async http library from apache
"org.json4s" %% "json4s-native" % "3.2.9", //json4s support for working with json serialization/deserialization
"org.json4s" %% "json4s-jackson" % "3.2.9")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment