【发布时间】:2013-06-25 10:53:10
【问题描述】:
POM.XML 有:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.15</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>src\test\resources\all_testing.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
当我在 POM.xml 中包含以下标签时,我收到了错误:
"Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.15:test (default-test) on project"
我该如何解决这个问题?
【问题讨论】:
标签: maven testng maven-surefire-plugin