Skip to content

Commit

Permalink
[MRELEASE-964] Error injecting: org.apache.maven.shared.release.phase…
Browse files Browse the repository at this point in the history
….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.

git-svn-id: https://svn.apache.org/repos/asf/maven/release/trunk@1777913 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Guillaume Boué committed Jan 8, 2017
1 parent 909f019 commit c0b2304
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions maven-release-manager/pom.xml
Expand Up @@ -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>
Expand Down

0 comments on commit c0b2304

Please sign in to comment.