Created
June 16, 2014 01:23
-
-
Save krishnabhargav/6b16db792061b0505abf to your computer and use it in GitHub Desktop.
build.sbt for scala + rest calls + json
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 := "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