lift-json with scala 2.10
Sbt file using Scala 2.11.8:
name := "Basic Lift-JSON Demo"
version := "1.0"
scalaVersion := "2.11.8"
libraryDependencies += "net.liftweb" % "lift-webkit_2.11" % "3.1.0"
If you are using scala 2.11, add the following to your build.sbt:
libraryDependencies += "net.liftweb" %% "lift-json" % "2.6+"
lift-json is not a plugin, but dependency
you should be able to use it by defining:
libraryDependencies += "net.liftweb" %% "lift-json" % "2.5.1"
in your build.sbt file