4

我正在尝试按照https://github.com/harrah/xsbt上的说明构建 sbt 0.12.0-RC1,但它无法下载以前版本的 sbt。

Getting org.scala-sbt sbt_2.9.1 0.12.0-M2 ...

:: problems summary ::
:::: WARNINGS
                module not found: org.scala-sbt#sbt_2.9.1;0.12.0-M2

        ==== local: tried

          /home/k/.ivy2/local/org.scala-sbt/sbt_2.9.1/0.12.0-M2/ivys/ivy.xml

        ==== typesafe-ivy-releases: tried

          http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt_2.9.1/0.12.0-M2/ivys/ivy.xml

        ==== Maven Central: tried

          http://repo1.maven.org/maven2/org/scala-sbt/sbt_2.9.1/0.12.0-M2/sbt_2.9.1-0.12.0-M2.pom

        ==== sonatype-snapshots: tried

          https://oss.sonatype.org/content/repositories/snapshots/org/scala-sbt/sbt_2.9.1/0.12.0-M2/sbt_2.9.1-0.12.0-M2.pom

                ::::::::::::::::::::::::::::::::::::::::::::::

                ::          UNRESOLVED DEPENDENCIES         ::

                ::::::::::::::::::::::::::::::::::::::::::::::

                :: org.scala-sbt#sbt_2.9.1;0.12.0-M2: not found

                ::::::::::::::::::::::::::::::::::::::::::::::



:: USE VERBOSE OR DEBUG MESSAGE LEVEL FOR MORE DETAILS
unresolved dependency: org.scala-sbt#sbt_2.9.1;0.12.0-M2: not found
Error during sbt execution: Error retrieving required libraries
  (see /home/k/.sbt/boot/update.log for complete log)
Error: Could not retrieve sbt 0.12.0-M2
4

1 回答 1

3

在构建 sbt 0.12-RC1 之前,您需要安装 sbt 0.12-M2。

这是在“从源代码构建”第 3 点下:

请注意,sbt 始终使用以前的稳定版本构建。例如,0.12 分支用 0.12.0-M2构建,v0.11.2 标签用 0.11.1 构建,v0.11.0 标签用 0.10.1 构建。

我想您只需从他们的存储库下载就会感觉更好。

于 2012-06-27T07:47:47.483 回答