Goals available for this plugin:
| Goal | Report? | Description | 
|---|---|---|
| project-info-reports:cim | Yes | Generates the Project Continuous Integration Management report. | 
| project-info-reports:dependencies | Yes | Generates the Project Dependencies report. | 
| project-info-reports:dependency-convergence | Yes | Generates the Project Dependency Convergence report for (reactor) builds. | 
| project-info-reports:dependency-info | Yes | Generates code snippets to be added to build tools. | 
| project-info-reports:dependency-management | Yes | Generates the Project Dependency Management report. | 
| project-info-reports:distribution-management | Yes | Generates the Project Distribution 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 report. | 
| project-info-reports:issue-tracking | Yes | Generates the Project Issue Management report. | 
| project-info-reports:license | Yes | Generates the Project Licenses report. | 
| project-info-reports:mailing-list | Yes | Generates the Mailing Lists report. | 
| project-info-reports:modules | Yes | Generates the Project Modules 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 Summary report. | 
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 2.2.1 | 
| JDK | 1.5 | 
| Memory | No minimum requirement. | 
| Disk Space | No minimum requirement. | 
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.9</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.9</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.9</version>
      </plugin>
      ...
    </plugins>
  </reporting>
  ...
</project>
For more information, see "Guide to Configuring Plug-ins"