3

我从以下位置克隆了项目:

https://github.com/dpp/simply_lift.git

然后我按照说明进行操作:

Change directories into the chat directory and type sbt update ~jetty-run.

SBT 获取依赖项,然后我得到这个:

[error] Not a valid command: jetty-run
[error] Expected '/'
[error] Expected ':'
[error] Not a valid key: jetty-run (similar: run)
[error] jetty-run
[error]

怎么办?

4

2 回答 2

7

在高于 0.10.0 的 SBT 版本中,~jetty-run已删除以支持:

container:start
container:stop
deployment // compiles the changes made while jetty is running.
于 2013-07-30T14:27:11.790 回答
0

您应该使用打包存档 ( ./sbt) 中的 sbt。而不是系统范围的 SBT(可能是新的)。

无论如何,我建议使用新的 SBT 和一切新的东西。这是一个项目的官方和良好的起点:https ://github.com/lift/lift_25_sbt/ (我个人使用它,我对它的工作方式很满意)

于 2013-07-30T14:56:16.447 回答