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
|
||||
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
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -84,6 +84,12 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.zookeeper</groupId>
|
||||
<artifactId>zookeeper</artifactId>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>jline</groupId>
|
||||
<artifactId>jline</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.fusesource.leveldbjni</groupId>
|
||||
|
|
Loading…
Reference in New Issue