我从run
内部使用activator
命令运行播放应用程序。当我打开索引页面时,在编译源代码之后,控制台将打印
[warn] Note: Some input files use unchecked or unsafe operations.
[warn] Note: Recompile with -Xlint:unchecked for details.
我怎么做?如何使用该参数重新编译?我试过用
activator -J-Xlint:unchecked
和JAVA_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/