summaryrefslogtreecommitdiff
path: root/build.sbt
blob: 16f2ccc5e03b5973aea68b9519ea9b9118565db1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
resolvers += "spray" at "http://repo.spray.cc"

libraryDependencies ++= Seq(
    "cc.spray" %% "spray-json" % "1.1.1",
    "org.parboiled" % "parboiled-scala" % "1.0.2" % "compile",
    "org.specs2" %% "specs2" % "1.7.1" % "test"
)

initialCommands in console += """
    import cc.spray.json._
    import DefaultJsonProtocol._
    import lenses._
    import JsonLenses._
"""