To build JSON from scala case class using Play ScalaJson (https://www.playframework.com/documentation/2.4.x/ScalaJson) I have to either manual construct JsObject or implement implicit Writes (that actually means also manual work).
While using lift-web json lib I can define implicit f Formats = net.liftweb.json.DefaultFormats and all transformation will be done in background.
Is any way how scala case classes can be easily transformed in json with play framework json lib ?