Can't specify outputFormats for Descartes (or feature undocumented ?)
gibello opened this issue · 2 comments
gibello commented
Characteristics
- Issue Type: [bug]
- Reproducibility: [always]
- Severity: [minor]
- Tool/Service/Component: [pitmp-maven-plugin, descartes]
- Execution Environment: [Java 8, Ubuntu linux 18.04]
- Reporter: [Pierre-Yves Gibello, pyg@ow2.org]
Description
Tried to specify outputFormats to pitmp-maven-plugin, as below: it has no effect at all on the generated output (always HTML).
This feature is not documented: is it implemented ? If so, the doc should be updated.
<plugin>
<groupId>eu.stamp</groupId>
<artifactId>pitmp-maven-plugin</artifactId>
<version>1.3.7-SNAPSHOT</version>
<configuration>
<mutationEngine>descartes</mutationEngine>
<outputFormats>
<value>HTML</value>
<value>JSON</value>
<value>METHODS</value>
<value>ISSUES</value>
</outputFormats>
</configuration>
</plugin>
oscarlvp commented
I've tried the configuration and it works on my side. Two things to notice:
- The other reports are created in the root directory of the
HTML
report - The configuration you report as
eu.stamp
instead ofeu.stamp-project
gibello commented
Looks fine, due to the wrong config you mentioned ? Thanks.