如何使用-feature运行游戏?

时间:2016-02-08 10:37:14

标签: scala playframework

这就是我玩Play的方式:

activator ~run

我收到以下警告:

[warn] there were 27 feature warnings; re-run with -feature for details

但如果我使用此命令运行Play,我就不会看到警告详情:

activator ~run -feature

如何使用-feature运行游戏?

2 个答案:

答案 0 :(得分:0)

您可以尝试:activator -feature ~run

但是这将在sbt 0.14中弃用。

您可以设置此选项以用于每次运行。将其添加到激活器的配置文件中: ~/.activator/activatorconfig.txt

UPD。 activatorconfigsbtconfig.txt类似,应包含您希望传递给sbt / activator的所有系统道具。

activatorconfig应放在以下某个文件夹中:

set "CFG_FILE_HOME=%UserProfile%\.activator\activatorconfig.txt"
set "CFG_FILE_VERSION=%UserProfile%\.activator\%APP_VERSION%\activatorconfig.txt"

检查activator启动脚本以获取更多详细信息。

答案 1 :(得分:0)

添加

scalacOptions ++= Seq("-feature")

build.sbt文件中。