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 に答える