I'm new to Scala and SBT.
I'm following this example: Play Framework
import play.api.libs.json.Json
val json: JsValue = Json.parse("""
{
"user": {
"name" : "toto",
"age" : 25,
"email" : "toto@jmail.com",
"isAlive" : true,
"friend" : {
"name" : "tata",
"age" : 20,
"email" : "tata@coldmail.com"
}
}
}
""")
How do you put the dependency for this library in the build.sbt file?
I'm using the Intellij scala IDE community edition.
Thanks