XML Report

XML Report only

If you do not want the site report, but only an XML version of the report, specify the xml as value to the formats property.

<plugin>
  <groupId>de.smartics.testdoc</groupId>
  <artifactId>testdoc-maven-report-plugin</artifactId>
  <version>${project.version}</version>
  <configuration>
    <formats>
      <format>xml</format>
    </formats>
  </configuration>
  <reportSets>
    ...
  </reportSets>
</plugin>

Site and XML Reports

If you want the report that is integrated in the site documentation as well as a plain XML version, add the following to the plugin's configuration:

<plugin>
  <groupId>de.smartics.testdoc</groupId>
  <artifactId>testdoc-maven-report-plugin</artifactId>
  <version>${project.version}</version>
  <configuration>
    <formats>
      <format>site</format>
      <format>xml</format>
    </formats>
  </configuration>
  <reportSets>
    ...
  </reportSets>
</plugin>