Book Image

Apache Maven Cookbook

Book Image

Apache Maven Cookbook

Overview of this book

Table of Contents (18 chapters)
Apache Maven Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Generating selective reports


We have seen that by default the site command generates some Project Information. Some of it, for instance Mailing Lists, may be nonexistent or irrelevant to the project. Let us see how we can avoid generating these. The Maven Project Info Reports plugin is the plugin that provides the standard reports from pom. It can be configured to exclude specific reports.

How to do it...

Use the following steps to generate selective site report:

  1. Open the project for which you want to generate the site report.

  2. Add the following code to the reporting section of the pom.xml file:

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <version>2.7</version>
        <reportSets>
          <reportSet>
            <reports>
              <report>dependencies</report>
              <report>project-team</report>
              <report>license</report...