To provide better integration with your project site, the Dashboard plugin includes a reporting MOJO. This MOJO will generate a place holder page that is linked in the Project Reports menu and can be replaced by the dashboard MOJO with the dashboard table. To use this mechanism you have to configure your project.
<reporting>
<plugins>
...
<plugin>
<groupId>com.xebia.mojo</groupId>
<artifactId>maven-dashboard-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<build>
...
<plugins>
...
<plugin>
<groupId>com.xebia.mojo</groupId>
<artifactId>maven-dashboard-plugin</artifactId>
<configuration>
<destinationFile>${project.reporting.outputDirectory}/maven-dashboard-report.html</destinationFile>
</configuration>
</plugin>
</plugins>
</build>