Plugin Documentation

Goals available for this plugin:

GoalReport?Description
project-info-reports:cimYesGenerates the Project Continuous Integration System report.
project-info-reports:dependenciesYesGenerates the Project Dependencies report.
project-info-reports:dependency-convergenceYesGenerates the Dependency Convergence report for reactor builds.
project-info-reports:dependency-managementYesGenerates the Project Dependency Management report.
project-info-reports:distribution-managementYesGenerates the Project Distribution Management report.
project-info-reports:helpNoDisplay 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:indexYesGenerates the project index page.
project-info-reports:issue-trackingYesGenerates the Project Issue Tracking report.
project-info-reports:licenseYesGenerates the Project License report.
project-info-reports:mailing-listYesGenerates the Mailing List report.
project-info-reports:modulesYesGenerates the Project Modules report.
project-info-reports:plugin-managementYesGenerates the Project Plugin Management report.
project-info-reports:pluginsYesGenerates the Project Plugins report.
project-info-reports:project-teamYesGenerates the Project Team report.
project-info-reports:scmYesGenerates the Project Source Code Management (SCM) report.
project-info-reports:summaryYesGenerates the project information reports summary.

System Requirements

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

Maven2.2.0
JDK1.5
MemoryNo minimum requirement.
Disk SpaceNo minimum requirement.
Maven Site Plugin2.1

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.4</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.4</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.4</version>
      </plugin>
      ...
    </plugins>
  </reporting>
  ...
</project>

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