如何配置 SBT 以选择所需的 scala 版本 (2.9)

发布于 2024-11-13 05:54:49 字数 94 浏览 2 评论 0原文

使用 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 技术交流群。

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

发布评论

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

评论(2

疯狂的代价 2024-11-20 05:54:49

如果您使用 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 specify scalaVersion := "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.

小霸王臭丫头 2024-11-20 05:54:49

在您的项目目录中应该有一个名为 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.

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