http://www.playframework.com/documentation/2.1.x/ScalaJson
That document says the idiomatic style of json creation is:
import play.api.libs.json.Json
Json.obj( "key" -> "value )
However this fails to compile as String -> String is not String -> Json.JsValueWrapper
It appears that play provides the code needed for implicit conversions in play.api.libs.json.{DefaultReads, DefaultWrites}
How do I get these implicit conversions into scope?