0

当我尝试运行 sbt 时收到以下消息:

[警告] com.typesafe.sbteclipse:sbteclipse-plugin:2.1.0-M2 (sbtVersion=0 .12, scalaVersion=2.9.2) [警告] sbt.ResolveException: unresolved dependency: com.typesafe.sbteclipse#sbteclipse- plugin ;2.1.0-M2: 未找到

我正在运行 sbt 0.12.3。如果我需要在这个插件中使用早期版本的 sbt,我不知道如何找到它们。该站点似乎没有列出要安装的 sbt 0.12。

我的插件文件说: addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.1.0-M2")

4

1 回答 1

1

好的。我解决了我自己的问题。我的 plugins.sbt 文件说: addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.1.0-M2")

我将其更改为: addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.1.2")

于 2013-05-24T18:12:51.357 回答