如何更改 sbt 项目的 Scala 版本?
如何更改 sbt 项目中的 Scala 版本?
我想让SBT检查系统的Scala版本是否正确,如果不正确则下载它。
How can I change Scala version in a sbt project?
I would like SBT to check whether the system's Scala version is correct and if it is not the case then download it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
xsbt(0.10+,包括最新的 0.13.7)
将
build.sbt
中的scalaVersion
更改为您的项目应使用的任何 Scala 版本 - 请参阅 .sbt 构建定义。sbt:
正如 RunningSBT 中所述,您可以:
但CrossBuild 页面更适合您的需求,因为它实际展示了如何更改
build.scala.versions
属性。因此,您应该能够
每次触发不同 Scala 版本的编译。
xsbt (0.10+, including the latest 0.13.7)
Change
scalaVersion
inbuild.sbt
to whatever Scala version your project should be using - see .sbt build definition.sbt:
As mentioned in RunningSBT, you can:
But the CrossBuild page is more suited for what you want, as it shows in action how to change the
build.scala.versions
property.So you should be able to
and each time trigger a compilation with a different Scala version.