eclipse:to-maven cannot resolve org.apache:xerces
-------------------------------------------------
Key: MECLIPSE-428
URL: http://jira.codehaus.org/browse/MECLIPSE-428
Project: Maven 2.x Eclipse Plugin
Issue Type: Bug
Components: PDE support
Affects Versions: 2.5.1
Reporter: Vincent Siveton
The POM generated for org.eclipse.wst.xml uses org.apache:xerces. Should be xerces:xerces
A workaround is an exclusion:
{noformat}
<dependency>
<groupId>org.eclipse.wst.xml</groupId>
<artifactId>core</artifactId>
<version>[1.0.0,1.2.0)</version>
<exclusions>
<exclusion>
<groupId>org.apache</groupId>
<artifactId>xerces</artifactId>
</exclusion>
</exclusions>
</dependency>
{noformat}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|