如何查看SBT 0.11中的所有警告?

发布于 2025-01-08 16:41:05 字数 343 浏览 0 评论 0原文

当我使用 SBT 0.11 编译 Scala 项目时,我收到有关“未检查”警告的通知,但我看不到警告本身。

我看到的是

[warn] there were 8 unchecked warnings; re-run with -unchecked for details
[warn] one warning found

我到底要“重新运行 -unchecked”以及如何做到这一点? compile -uncheckedcompile uncheckedxsbt -unchecked 似乎都不起作用。

I get notified about "unchecked" warnings when I compile my Scala project with SBT 0.11, but I can't see the warnings themselves.

What I see is

[warn] there were 8 unchecked warnings; re-run with -unchecked for details
[warn] one warning found

What exactly am I to "re-run with -unchecked" and how to do that? Neither compile -unchecked, nor compile unchecked, nor xsbt -unchecked seem to work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

像极了他 2025-01-15 16:41:05

我找到了答案 这里

解决方案是添加

scalacOptions ++= Seq("-unchecked", "-deprecation")

到项目的 build.sbt 文件中。

它还可以将“-feature”作为选项并与 sbt 0.13 一起使用

I've found the answer here.

The solution is to add

scalacOptions ++= Seq("-unchecked", "-deprecation")

to the project's build.sbt file.

It can also take "-feature" as an option and works with sbt 0.13

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文