Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.3.1
-
None
Description
The plugin pages aren't being generated. Looks like the plugin pom references the wrong plugin in the reporting section:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
</plugin>
</plugins>
</reporting>
should be:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-report-plugin</artifactId>
</plugin>
</plugins>
</reporting>