Is there such a thing as a generic external report plugin out there?

I am thinking of 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 just 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 like the one posted
recently).
-- 
View this message in context: 
http://www.nabble.com/External-report-plugin-tf2634683s177.html#a7353845
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to