Hi all, I would like to perform the first release of the Dashboard Maven Plugin.
The new version will be <http://2.2.2./>1.0.0-beta-1 as the same last deployed SNAPSHOT timestamped : 1.0-20080721.144534-21 The vote is open for 72 hours. +1 [ ] 0 [ ] -1 [ ] My +1 ============================================== For the first release, i must modify the goal prefix used in the command line or Continuum goals : as described in dashboard documentation : http://mojo.codehaus.org/dashboard-maven-plugin/ you must add this in your pom.xml or settings.xml to use properly the dashboard plugin: <pluginRepositories> <pluginRepository> <id>Codehaus Snapshots</id> <url> http://snapshots.repository.codehaus.org/</url> </pluginRepository> </pluginRepositories> But even if this configuration is well done, Maven doesn't recognize the "mvn dashboard-report:dashboard" command. and to work fine, you must run "mvn org.codehaus.mojo:dashboard-maven-plugin:1.0-SNAPSHOT:dashboard" command instead of "mvn dashboard-report:dashboard". See : http://www.nabble.com/Make-a-Codehaus-plugin-works-on-a-local-configuration-tf4297606s177.html or http://www.nabble.com/Multimodule-code-coverage-report-tf4511339s177.html or http://jira.codehaus.org/browse/MOJO-899 In the project's beginning, i decided to modify the goal prefix to "dashboard-report" instead of the default's one by adding in the pom.xml of the dashboard plugin : ... <build> .... <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <configuration> <goalPrefix>dashboard-report</goalPrefix> </configuration> </plugin> ... </plugins> ... </build> .... I think it's The Maven resolution problem of "dashboard-report". Maven does not resolve properly the plugin prefix. it's for that : "mvn dashboard-report:dashboard" doesn't work correctly. i will delete this goalPrefix and let the default's one which works fine. After that, you will have to modify the goal prefix in your command line or Continuum goals to use the dashboard report : from "dashboard-report:dashboard" to "dashboard:dashboard" or from "dashboard-report:persist" to "dashboard:persist" ============================================ Best Regards David Vicente