Just downloaded the Scala Lift chat application and use the instructions to run it, but it fails

lift, sbt, scala

Solution

In versions of SBT newer than 0.10.0, `~jetty-run` has been removed in favour of:

container:start
container:stop
deployment // compiles the changes made while jetty is running.

Problem

I cloned the project from: ``` https://github.com/dpp/simply_lift.git ``` Then I followed the instructions which state: ``` Change directories into the chat directory and type sbt update ~jetty-run. ``` SBT fetches dependencies, and then I get this: ``` [error] Not a valid command: jetty-run [error] Expected '/' [error] Expected ':' [error] Not a valid key: jetty-run (similar: run) [error] jetty-run [error] ``` Now what?

Original source