The jaxrpc-impl/1.1.3_01 project has an incorrect reference for the FastInfoSet dependency ------------------------------------------------------------------------------------------
Key: MEV-541 URL: http://jira.codehaus.org/browse/MEV-541 Project: Maven Evangelism Issue Type: Bug Components: Invalid POM Reporter: Marc Chung The jaxrpc-impl pom references a dependency that *appears* to be incorrect. Specifically, it's looking for FastInfoSet in org.jvnet.fastinfoset.FasInfoSet, but the dependency is really located in com.sun.xml.fastinfoset.FastInfoSet. See: http://repo1.maven.org/maven2/com/sun/xml/rpc/jaxrpc-impl/1.1.3_01/jaxrpc-impl-1.1.3_01.pom See: http://repo1.maven.org/maven2/com/sun/xml/fastinfoset/FastInfoset/1.0.2/FastInfoset-1.0.2.pom Solution: A) Either correct the FastInfoSet dependency in the jaxrpc-impl project Change this: <dependency> <groupId>org.jvnet.fastinfoset</groupId> <artifactId>FastInfoset</artifactId> <version>1.0.2</version> </dependency> To this: <dependency> <groupId>com.sun.xml.fastinfoset</groupId> <artifactId>FastInfoset</artifactId> <version>1.0.2</version> </dependency> B) Or add a org.jvnet.fastinfoset dependency and use a relocation (which may look something like this) <project> <groupId>org.jvnet.fastinfoset</groupId> <artifactId>FastInfoSet</artifactId> <version>1.0.2</version> <distributionManagement> <relocation> <groupId>com.sun.xml.fastinfoset</groupId> </relocation> </distributionManagement> </project> I'd personally go for the first approach. Thanks -- 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