找不到工件 org.scalatest:maven-scalatest-plugin:jar:1.0
Could not find artifact org.scalatest:maven-scalatest-plugin:jar:1.0
我正在尝试 运行 使用 Maven 进行一些 Scala 测试(FlatSpec 样式),但是,当我 运行 mvn test
时,我收到以下错误。
Could not find artifact org.scalatest:maven-scalatest-plugin:jar:1.0
我正在按照 https://github.com/scalatest/scalatest-maven-plugin and 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。
你的 link 表明插件的版本应该是 1.0-SNAPSHOT
。事实上,您可以在这里看到:https://oss.sonatype.org/content/groups/public/org/scalatest/maven-scalatest-plugin/
只有那个版本。因此,请检查 pom.xml
中的插件声明。它应该包含 <version>1.0-SNAPSHOT</version>
而不是 1.0
我正在尝试 运行 使用 Maven 进行一些 Scala 测试(FlatSpec 样式),但是,当我 运行 mvn test
时,我收到以下错误。
Could not find artifact org.scalatest:maven-scalatest-plugin:jar:1.0
我正在按照 https://github.com/scalatest/scalatest-maven-plugin and 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。
你的 link 表明插件的版本应该是 1.0-SNAPSHOT
。事实上,您可以在这里看到:https://oss.sonatype.org/content/groups/public/org/scalatest/maven-scalatest-plugin/
只有那个版本。因此,请检查 pom.xml
中的插件声明。它应该包含 <version>1.0-SNAPSHOT</version>
而不是 1.0