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>
なぜこれが起こっているのですか?