我想在我的Scala项目中更特别地使用ScalaTest。我遵循了安装说明,并且正在使用sbt 0.13和scala 2.11.8。

我收到以下错误:

[error] (*:update) sbt.ResolveException: unresolved dependency: com.artima.supersafe#sbtplugin;1.1.0-RC6: not found


我尝试使用与scala 2.11.8相关的其他工件,但是没有运气。

我可以将SuperSafe Community Edition与sbt 0.3和scala 2.11.8一起使用吗?

最佳答案

在开始使用Scalatest时,我遇到了同样的问题。我使用版本1.0.6-M2为我解决了该错误。 plugins.sbt中的以下两行起到了作用


解析器+ =“ http://repo.artima.com/releases”处的“ Artima Maven存储库”

addSbtPlugin(“ com.artima.supersafe”%“ sbtplugin”%“ 1.0.6-M2”)

07-26 03:29