使用Maven,当我运行“测试”目标时,就会处理测试。 当我运行“ surefire:test”目标时,不会处理测试。
但是,我在pom.xml中以这种方式提到了surefire插件:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>foo.xmlxml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
您能解释一下这种行为吗?