如何配置 SBT 以选择所需的 scala 版本 (2.9)
使用 sbt 命令创建项目时,它总是提示输入 2.7.X 版本的 scala,但是我安装了 2.9.0 和 sbt 0.7.7,有没有办法将 sbt 配置为默认选择 2.9。
While creating a project with sbt command it always prompts for the 2.7.X version of scala however I have 2.9.0 and sbt 0.7.7 installed is there a way to configure sbt to pick 2.9 by default.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 sbt 版本 0.10 相反,它会在
build.sbt 中发生一些变化
您指定的文件scalaVersion := "2.9.0-1"
(默认似乎是 2.8.1)请参阅 从 SBT 0.7.x 迁移到 0.10.x< /a> 或快速配置示例。 完整配置示例显示了 Scala 风格的配置。
这里有一个
~/.sbt/plugins/
库,您可以在其中存储全局插件。但我还不知道是否可以定义全局构建属性。If you use sbt version 0.10 instead it has changed a bit, in the
build.sbt
file you specifyscalaVersion := "2.9.0-1"
(default seem to be 2.8.1)See Migrating from SBT 0.7.x to 0.10.x or Quick Configuration Examples. The Full configuration example shows Scala style configuration.
Threre is a
~/.sbt/plugins/
library where you store global plugins. But I do not yet know if you can define a global build properties.在您的项目目录中应该有一个名为 build.properties 的文件。在那里您可以配置 SBT 以使用您想要的任何版本。当您更改文件时,退出 SBT 或使用命令重新加载。
In your project directory there should be a file called build.properties. There you can configure SBT to use whatever version you want. When you change the file either exit SBT or use the command reload.