2

play 内から scala コンパイラにオプションを渡そうとしています。

私が得た:[warn] there were 1 feature warnings; re-run with -feature for details [warn] one warning found

だから私は使ってみcompile -featureましたが、得ました:

$ compile -feature
[error] Expected end of input.
[error] compile -feature
[error]

コンソールでコンパイラにオプションを渡す適切な方法は何ですか?

4

2 に答える 2

4

ファイルに scalac オプションを追加できproject/Build.scalaます。

このファイルを開き、ファイルの下部にある Play プロジェクト オブジェクトに独自のプロジェクト設定を追加します。例えば:

val main = play.Project(appName, appVersion, appDependencies).settings(
    // Add your own project settings here   
    scalacOptions += "-feature" 
)
于 2013-07-14T17:01:25.010 に答える