Generic external report plugin ------------------------------ Key: MNG-2660 URL: http://jira.codehaus.org/browse/MNG-2660 Project: Maven 2 Issue Type: New Feature Components: Plugin Requests, Sites & Reporting Affects Versions: 2.0.4 Reporter: Dave Syer
A very simple plugin to add an external report (e.g. junit html report) to the project reports. This is really trivial (if anyone wants some code that does it ask), but would be quite valuable to many people. Example: <reporting> <plugins> <plugin> <groupId>org.apache.maven</groupId> <artifactId>maven-external-report-plugin</artifactId> <configuration> <name>JUnit Report</name> <description>JUnit test results for this project</description> <base>junit-reports</base> </configuration> </plugin> </plugins> </reporting> This generates a link in the project reports to junit-reports/index.html, which has to be populated elsewhere (e.g. by an ant task). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira