尝试使用Play2(zentasks)运行某些Scala示例时,出现以下错误:
==== Maven Central: tried
http://repo1.maven.org/maven2/org/scala-sbt/sbt_2.9.1/0.12.0/sbt_2.9.1-0.12.0.pom
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED DEPENDENCIES ::
::::::::::::::::::::::::::::::::::::::::::::::
:: org.scala-sbt#sbt_2.9.1;0.12.0: not found
::::::::::::::::::::::::::::::::::::::::::::::
我检查过以下内容:
我的project / build.properties如下:
sbt.version=0.11.3
我已将sbt版本更改为0.12.1;然而,似乎Play2(这个版本)运行自己的Scala和sbt版本。 我的project / plugins.sbt是:
// Comment to get more information during initialization
logLevel := Level.Warn
// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/repo1/"
// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.0.4")
我能够创建一个“新”项目(在prod中工作)没有任何问题,但我无法运行任何样本。我也尝试过其他一些项目(deadbolt2)并遇到同样的问题。