Its maybe not detailed enough for users who are new into it.
class LiftProject(info: ProjectInfo) extends DefaultWebProject(info) {
val liftVersion = "2.2"
// uncomment the following if you want to use the snapshot repo
// val scalatoolsSnapshot = ScalaToolsSnapshots
// If you're using JRebel for Lift development, uncomment
// this line
// override def scanDirectories = Nil
override def libraryDependencies = Set(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile->default",
"org.mortbay.jetty" % "jetty" % "6.1.22" % "test->default",
"junit" % "junit" % "4.5" % "test->default",
"ch.qos.logback" % "logback-classic" % "0.9.26",
"org.scala-tools.testing" %% "specs" % "1.6.6" % "test->default",
"net.liftweb" %% "lift-wizard" % liftVersion % "compile->default" // here you go
) ++ super.libraryDependencies
}