我从run内部使用activator命令运行播放应用程序。当我打开索引页面时,在编译源代码之后,控制台将打印

[warn] Note: Some input files use unchecked or unsafe operations.
[warn] Note: Recompile with -Xlint:unchecked for details.


我怎么做?如何使用该参数重新编译?我试过用activator -J-Xlint:uncheckedJAVA_OPTS="-Xlint:unchecked" activator运行激活器,两者都导致

Unrecognized option: -Xlint:unchecked
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

最佳答案

将此添加到您的build.sbt:

javacOptions += "-Xlint:unchecked"

关于scala - Activator-如何使用-Xlint:unchecked重新编译?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32744117/

10-11 05:12