Plugin Documentation

Goals available for this plugin:

Goal Report? Description
project-info-reports:cim Yes Generates the Project Continuous Integration System report.
project-info-reports:dependencies Yes Generates the Project Dependencies report.
project-info-reports:dependency-convergence Yes Generates the Dependency Convergence report for reactor builds.
project-info-reports:dependency-management Yes Generates the Project Dependency Management report.
project-info-reports:help No Display help information on maven-project-info-reports-plugin.
Call
 mvn project-info-reports:help -Ddetail=true -Dgoal=<goal-name>
to display parameter details.
project-info-reports:index Yes Generates the project index page.
project-info-reports:issue-tracking Yes Generates the Project Issue Tracking report.
project-info-reports:license Yes Generates the Project License report.
project-info-reports:mailing-list Yes Generates the Mailing List report.
project-info-reports:plugin-management Yes Generates the Project Plugin Management report.
project-info-reports:plugins Yes Generates the Project Plugins report.
project-info-reports:project-team Yes Generates the Project Team report.
project-info-reports:scm Yes Generates the Project Source Code Management (SCM) report.
project-info-reports:summary Yes Generates the project information reports summary.

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven 2.0.6
JDK 1.4
Memory No minimum requirement.
Disk Space No minimum requirement.

Usage

You should specify the version in your project's plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-project-info-reports-plugin</artifactId>
          <version>2.1.2</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <version>2.1.2</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
  <!-- To use the report goals in your POM or parent POM -->
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <version>2.1.2</version>
      </plugin>
      ...
    </plugins>
  </reporting>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"