|
||||||||
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 |
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and XmlPars... JIRA
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... Steve Storey (JIRA)
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... JIRA
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... JIRA
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... JIRA
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... Steven Christou (JIRA)
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... JIRA
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... JIRA
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... JIRA
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... JIRA
- [mojo-dev] [jira] (MCOBERTURA-179) JAXB and Xm... JIRA
I too had this (albeit with Java 8 rather than 7) and the problem appears to be that cobertura itself depends on an ancient version of xerces (2.6.2 - via Jaxen). As a workaround, I added a test depedency to my POM:
<!-- Need to add this to override the version provided by Cobertura --> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.11.0</version> <scope>test</scope> </dependency>