Thanks for the sample project. Now we have something to work with.

I added this snippet to the pom.xml to lock down the cobertura plugin version to 2.5.1:

<build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>cobertura-maven-plugin</artifactId>
          <version>2.5.1</version>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
[

Then I ran

mvn -X cobertura:cobertura

using Maven 3.0.4 and Java 1.5.0_22 on Windows 7.

Works perfectly for me.

May I suggest that you try with a clean local repository, in case you have somehow downloaded a bad JAR file. Temporarily rename ${user.home}/.m2/repository and run the build again. If you get the same results, try it again and bypass your Nexus.

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to