The xmlbeans dependency in the pom file is wrong
------------------------------------------------
Key: MXMLBEANS-36
URL: http://jira.codehaus.org/browse/MXMLBEANS-36
Project: Maven 2.x Xmlbeans Plugin
Issue Type: Bug
Affects Versions: 2.2.0
Reporter: Severin Ecker
Priority: Critical
Fix For: 2.3.0
In the pom.xml file of the xmlbeans-maven-plugin (versions 2.2.0 and 2.3.0) the
dependency to the xmlbeans libraries are wrong.
This is stated in the pom.xml file
org.codehaus.mojo:xmlbeans-maven-plugin:jar:2.2.0
<dependency>
<groupId>xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.2.0</version>
<scope>compile</scope>
</dependency>
org.codehaus.mojo:xmlbeans-maven-plugin:jar:2.3.0
<dependency>
<groupId>xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.3.0</version>
<scope>compile</scope>
</dependency>
BUT, the groupId of xmlbeans versions 2.2.0 and 2.3.0 is
org.apache.xmlbeans
(excerpt taken from the pom file on the main repository of xmlbeans version
2.2.0, the same holds true for 2.3.0)
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.2.0</version>
as you can see the groupId of the xmlbeans library and the groupId of the maven
plugin do not match, therefore the dependency can't be found and the pom file
must be patched locally!
please fix this and upload the adapted pom file asap.
changing the dependency to
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.2.0</version>
<scope>compile</scope>
</dependency>
will fix the issue of a missing dependency!
--
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
---------------------------------------------------------------------
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email