我正在尝试使用maven运行一些scala测试(FlatSpec样式),但是,当我运行mvn test
时,我收到以下错误。
无法找到工件org.scalatest:maven-scalatest-plugin:jar:1.0
我正在按照https://github.com/scalatest/scalatest-maven-plugin和http://www.scalatest.org/user_guide/using_the_scalatest_maven_plugin的说明操作。我注意到这个git存储库的最后一次更新是在2年前。这个插件仍然是从maven运行scala测试的事实标准方法吗?
从这个网站http://ladstatt.blogspot.com/2012/06/testing-with-maven-scaladin-scalatest.html,它说要添加一个pluginRepository,但这仍然没有帮助,因为错误仍然显示。
我正在使用Scala v2.10.6和Maven 3.3.3。
答案 0 :(得分:1)
您的链接显示插件应为版本1.0-SNAPSHOT
。事实上,你可以在这里看到:https://oss.sonatype.org/content/groups/public/org/scalatest/maven-scalatest-plugin/
只有那个版本。因此,请检查pom.xml
中的插件声明。它应包含<version>1.0-SNAPSHOT</version>
而不是1.0