Author: gboue
Date: Sun Jan 8 21:17:21 2017
New Revision: 1777913
URL: http://svn.apache.org/viewvc?rev=1777913&view=rev
Log:
[MRELEASE-964] Error injecting:
org.apache.maven.shared.release.phase.RewritePomsForReleasePhase
jaxen is bringing a conflicting dependency of JDom (version 1.0 when the plugin
depends on 1.1). Instead of excluding jdom, the Jaxen dependency can be removed
as XPath is not used anymore: it was introduced in r397561 for the
RewritePomsForReleasePhase class, the code depending on it was later moved to
AbstractRewritePomsPhase in r398224, and that code was rewritten in r1179704,
removing the XPath dependency.
Modified:
maven/release/trunk/maven-release-manager/pom.xml
Modified: maven/release/trunk/maven-release-manager/pom.xml
URL:
http://svn.apache.org/viewvc/maven/release/trunk/maven-release-manager/pom.xml?rev=1777913&r1=1777912&r2=1777913&view=diff
==============================================================================
--- maven/release/trunk/maven-release-manager/pom.xml (original)
+++ maven/release/trunk/maven-release-manager/pom.xml Sun Jan 8 21:17:21 2017
@@ -153,30 +153,6 @@
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
</dependency>
- <dependency>
- <groupId>jaxen</groupId>
- <artifactId>jaxen</artifactId>
- <version>1.1-beta-8</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <groupId>dom4j</groupId>
- <artifactId>dom4j</artifactId>
- </exclusion>
- <exclusion>
- <groupId>xerces</groupId>
- <artifactId>xmlParserAPIs</artifactId>
- </exclusion>
- <exclusion>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- </exclusion>
- <exclusion>
- <groupId>xom</groupId>
- <artifactId>xom</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
<dependency>
<groupId>junit</groupId>