Selecting Reports
The plugin normally generates 3 reports: changelog
, dev-activity
and file-activity
. By default all three reports are generated. It is possible to configure the plugin so that only a few of these reports are generated. This is done using <reportSets>
.
The following configuration will generate only the changelog
and file-activity
reports.
Note: The reportSets
element is not part of the configuration
element. Instead, the configuration
is found inside the reportSet
element.
<project> ... <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId> <version>3.0.0-M1</version> <reportSets> <reportSet> <id>dual-report</id> <configuration> <type>range</type> <range>30</range> </configuration> <reports> <report>changelog</report> <report>file-activity</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> ... </project>