YARN-2815. Excluded transitive dependency of JLine in hadoop-yarn-server-common. Contributed by Ferdinand Xu.
This commit is contained in:
parent
84198564ba
commit
43302f6f44
|
@ -379,6 +379,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
YARN-3064. TestRMRestart/TestContainerResourceUsage/TestNodeManagerResync
|
YARN-3064. TestRMRestart/TestContainerResourceUsage/TestNodeManagerResync
|
||||||
failure with allocation timeout. (Jian He via junping_du)
|
failure with allocation timeout. (Jian He via junping_du)
|
||||||
|
|
||||||
|
YARN-2815. Excluded transitive dependency of JLine in hadoop-yarn-server-common.
|
||||||
|
(Ferdinand Xu via zjshen)
|
||||||
|
|
||||||
Release 2.6.0 - 2014-11-18
|
Release 2.6.0 - 2014-11-18
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -84,6 +84,12 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.zookeeper</groupId>
|
<groupId>org.apache.zookeeper</groupId>
|
||||||
<artifactId>zookeeper</artifactId>
|
<artifactId>zookeeper</artifactId>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>jline</groupId>
|
||||||
|
<artifactId>jline</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.fusesource.leveldbjni</groupId>
|
<groupId>org.fusesource.leveldbjni</groupId>
|
||||||
|
|
Loading…
Reference in New Issue