我正在尝试使用带有 maven surefire 插件的 TestNG 自定义报告器。我已经有一个自定义侦听器,并且似乎被采纳了。但是,看起来根本没有使用自定义报告器:
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>false</testFailureIgnore>
<properties>
<property>
<name>listener</name>
<value>com.mystuff.test.TestNGListener</value>
</property>
<property>
<name>reporter</name>
<value>com.mystuff.test.MyEmailableReporter</value>
</property>
</properties>
</configuration>
</plugin>
知道为什么会这样吗?