激活器 - 如何使用 -Xlint:unchecked 重新编译?
Activator - how to recompile with -Xlint:unchecked?
我 运行 我的播放应用程序使用来自 activator
内部的 run
命令。当我打开索引页时,在编译源代码后,控制台打印
[warn] Note: Some input files use unchecked or unsafe operations.
[warn] Note: Recompile with -Xlint:unchecked for details.
我该怎么做?如何使用该参数重新编译?我已尝试使用 运行ning 激活剂与 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"
我 运行 我的播放应用程序使用来自 activator
内部的 run
命令。当我打开索引页时,在编译源代码后,控制台打印
[warn] Note: Some input files use unchecked or unsafe operations.
[warn] Note: Recompile with -Xlint:unchecked for details.
我该怎么做?如何使用该参数重新编译?我已尝试使用 运行ning 激活剂与 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"