如何通过 Maven 使用 Scala 2.9 的夜间构建?

发布于 2024-10-16 21:06:20 字数 125 浏览 2 评论 0原文

最近我想在一个小项目中尝试Scala 2.9中的一些新功能。我想使用 Maven 来构建它。我如何告诉 Maven 使用 Scala 2.9 的最新每晚构建版本?如果有人知道如何使用 sbt 而不是 Maven 来做到这一点,那也很好。

Recently I wanted to try some of the new features in Scala 2.9 in a small project. I would like to use maven for building it. How can I tell Maven to use the latest nightly build of Scala 2.9? If someone knows how to do this with sbt instead of maven, that would be good too.

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

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

发布评论

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

评论(1

妄想挽回 2024-10-23 21:06:20

您可以尝试这个存储库:

http://www.scala-tools.org/repo-snapshots

Scala 版本:2.9.0-SNAPSHOT

以下是 pom.xml

<repositories>
    <repository>
        <id>scala-tools.org</id>
        <name>Scala-Tools Maven2 Repository</name>
        <url>http://scala-tools.org/repo-snapshots</url>
    </repository>
</repositories>

<pluginRepositories>
    <pluginRepository>
        <id>scala-tools.org</id>
        <name>Scala-Tools Maven2 Repository</name>
        <url>http://scala-tools.org/repo-snapshots</url>
    </pluginRepository>
</pluginRepositories>

sbt 的代码片段:

val scalaToolsSnapshots = "Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/"

You can try this repository:

http://www.scala-tools.org/repo-snapshots

with Scala version: 2.9.0-SNAPSHOT

Here is snippet for pom.xml:

<repositories>
    <repository>
        <id>scala-tools.org</id>
        <name>Scala-Tools Maven2 Repository</name>
        <url>http://scala-tools.org/repo-snapshots</url>
    </repository>
</repositories>

<pluginRepositories>
    <pluginRepository>
        <id>scala-tools.org</id>
        <name>Scala-Tools Maven2 Repository</name>
        <url>http://scala-tools.org/repo-snapshots</url>
    </pluginRepository>
</pluginRepositories>

and for sbt:

val scalaToolsSnapshots = "Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文