是否有SBT办法编译器警告转换为错误,所以构建失败?(Is there a way in sbt t

2019-08-18 00:19发布

我想“封杀”的部分或全部的编译器警告。

Answer 1:

你可以通过从SBT选项Scala编译器,包括轮流警告变为错误之一。

我通常添加这些:

scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xfatal-warnings"),


Answer 2:

看看致命的警告标志scalac。

来源: https://groups.google.com/forum/?fromgroups=#!topic/simple-build-tool/RcDnib_EGL4



文章来源: Is there a way in sbt to convert compiler warnings to errors so the build fails?
标签: scala sbt