How can I add the Play JSON library (play.api.libs.json) to my sbt project?
play.api.libs.json
When I added the following to my plugins.sbt file:
plugins.sbt
This worked for me (scala 2.11)
resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.3.0"