0

我的 pom.xml 中没有万无一失的插件入口。但是当我使用命令运行时,我得到了肯定的插件错误:

 mvn test -Dtest=TEstClass

错误:

 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:test (default-
 test) on project my-projection: No tests were executed!  (Set -DfailIfNoTests=false to ignore 
 this error.) -> [Help 1]

它来自哪里?

4

1 回答 1

8

项目的超级 pom包括 surefire 插件。如果您运行mvn help:effective-pom它,它将显示您在项目中调用 maven 时正在使用的 pom,包括您从父 pom 文件继承的所有内容,并且您会看到它包含 surefire 插件。

于 2013-07-03T01:54:33.253 回答