I'm using Spock to test a Java application. I would like to generate test reports, in html, using damage-control
What maven goal shoud be executed to generate the reports?
I'm using Spock to test a Java application. I would like to generate test reports, in html, using damage-control
What maven goal shoud be executed to generate the reports?
You should use goal provided by plugin.
Maven provides only phase's, not goals
So you should use phase test
and goal report
.
<execution>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
report
goal is declared in this file DamageControlMojo.
/**
* @goal report
*/
It generated the reports running: