我在scala中从事一个playframework项目。然而,我们的团队希望使用 scalatest 而不是 specs。我已将以下内容添加到 plugins.sbt 文件中:
libraryDependencies += "org.scalatest" %% "scalatest" % "1.7.1" "test"
但是当我开始玩时,没有新的 jar 被下载,即使在运行之后也没有
update
当我跑步时
library-dependencies
它向我展示了这个
[info] List(org.scala-lang:scala-library:2.9.1, play:play:2.0, play:play-test:2.0:test)
此外,当我尝试测试时,我得到一个编译错误,说 org.scalatest 不在构建路径中。有谁知道出了什么问题?