当我尝试运行sbt时,收到以下消息:
warn com.typesafe.sbteclipse:sbteclipse-plugin:2.1.0-M2 (sbtVersion=0 .12,scalaVersion=2.9.2) warn插件:未解析的依赖: com.typesafe.sbteclipse#sbteclipse- sbt.ResolveException;2.1.0-M2:未找到
我正在运行sbt 0.12.3。如果我需要在这个插件中使用sbt的早期版本,我不知道如何找到它们。该站点似乎没有列出要安装的sbt 0.12。
我的插件文件是: addSbtPlugin("com.typesafe.sbteclipse“% "sbteclipse-plugin”% "2.1.0-M2")
发布于 2013-05-25 02:12:51
好吧。我解决了我自己的问题。我的plugins.sbt文件说: addSbtPlugin("com.typesafe.sbteclipse“% "sbteclipse-plugin”% "2.1.0-M2")
我把它改成: addSbtPlugin("com.typesafe.sbteclipse“% "sbteclipse-plugin”% "2.1.2")
https://stackoverflow.com/questions/16724478
复制相似问题