I have been using dashboard for mvn 2 for a couple of weeks to aggregate
Cobertura/Surefire/Checkstyle/PMD/CPD Reports without having to build and
install it manually (limits the distributability of pom), here is my pom
entry (very last report plugin in the pom):

[....]
     <plugin>
       <groupId>org.codehaus.mojo</groupId>
       <artifactId>dashboard-maven-plugin</artifactId>
       <version>1.0-SNAPSHOT</version>
     </plugin>
  </plugins>
 </reporting>
</project>

You will need to include the codehaus snapshots repository in your specific
section in the pom:
   [....]
   <pluginRepository>
     <id>codehaus.snapshots</id>
     <name>Codehaus Maven Snapshot Repository</name>
     <url>http://snapshots.repository.codehaus.org/</url>
     <snapshots>
       <enabled>true</enabled>
     </snapshots>
   </pluginRepository>
   [...]

Hope this helps.


On 1/29/07, Morgovsky, Alexander (US - Glen Mills) <[EMAIL PROTECTED]>
wrote:

I just need to check out all the code from this URL and run mvn install?

-----Original Message-----
From: Srilakshmanan, Lakshman [mailto:
[EMAIL PROTECTED]
Sent: Monday, January 29, 2007 7:29 PM
To: Morgovsky, Alexander (US - Glen Mills)
Cc: users@maven.apache.org
Subject: RE: M2 dashboard plug-in found

Hi Alexander,

This plugin has not been released yet, so you cannot put it in your POM
and expect it be downloaded :(

You need to checkout the plugin and build it. It is quite easy to build.
It builds just like any other plugins. I downloaded it from

https://svn.codehaus.org/mojo/trunk/mojo/mojo-sandbox/dashboard-maven-plugin/

Once you have built it, you may install it in your repository.

The snippet from my POM is as follows

          <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>dashboard-maven-plugin</artifactId>
              <version>1.0-SNAPSHOT</version>
          </plugin>

Thanks
Lakshman
________________________________________
From: Morgovsky, Alexander (US - Glen Mills) [mailto:
[EMAIL PROTECTED]
Sent: Tuesday, 30 January 2007 10:00 AM
To: Srilakshmanan, Lakshman
Cc: users@maven.apache.org
Subject: RE: M2 dashboard plug-in found

I put the plug-in into my master POM, but the plug-in could not be
downloaded. I tried manually installing to our repository, but no success.
Could you please post a basic POM which fully shows how to properly declare
the Codehaus repository and use this plugin? Thanks.

This message (including any attachments) contains confidential information
intended for a specific individual and purpose, and is protected by law. If
you are not the intended recipient, you should delete this message.
Any disclosure, copying, or distribution of this message, or the taking of
any action based on it, is strictly prohibited. [v.E.1]


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


Reply via email to