HADOOP-10235. Hadoop tarball has 2 versions of stax-api JARs. (tucu)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1559231 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5736c7ad1b
commit
b9623c6308
|
@ -232,6 +232,8 @@ Release 2.4.0 - UNRELEASED
|
|||
HADOOP-10125. no need to process RPC request if the client connection
|
||||
has been dropped (Ming Ma via brandonli)
|
||||
|
||||
HADOOP-10235. Hadoop tarball has 2 versions of stax-api JARs. (tucu)
|
||||
|
||||
Release 2.3.0 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -416,7 +416,7 @@
|
|||
<version>${jersey.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>javax.xml.stream</groupId>
|
||||
<groupId>stax</groupId>
|
||||
<artifactId>stax-api</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
|
@ -764,6 +764,12 @@
|
|||
<groupId>org.codehaus.jettison</groupId>
|
||||
<artifactId>jettison</artifactId>
|
||||
<version>1.1</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>stax</groupId>
|
||||
<artifactId>stax-api</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.jersey</groupId>
|
||||
|
|
Loading…
Reference in New Issue