HADOOP-12552. Fix undeclared/unused dependency to httpclient (iwasakims)
(cherry picked from commit 809ebc0b14
)
This commit is contained in:
parent
2cb1fd3bd3
commit
c7824e8e9e
|
@ -9,6 +9,8 @@ Release 2.8.0 - UNRELEASED
|
||||||
HADOOP-12416. Trash messages should be handled by Logger instead of being
|
HADOOP-12416. Trash messages should be handled by Logger instead of being
|
||||||
delivered on System.out. (Mingliang Liu via aajisaka)
|
delivered on System.out. (Mingliang Liu via aajisaka)
|
||||||
|
|
||||||
|
HADOOP-12552. Fix undeclared/unused dependency to httpclient (iwasakims)
|
||||||
|
|
||||||
NEW FEATURES
|
NEW FEATURES
|
||||||
|
|
||||||
HADOOP-11226. Add a configuration to set ipc.Client's traffic class with
|
HADOOP-11226. Add a configuration to set ipc.Client's traffic class with
|
||||||
|
|
|
@ -64,8 +64,8 @@
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-httpclient</groupId>
|
<groupId>org.apache.httpcomponents</groupId>
|
||||||
<artifactId>commons-httpclient</artifactId>
|
<artifactId>httpclient</artifactId>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -113,8 +113,8 @@
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.httpcomponents</groupId>
|
<groupId>commons-httpclient</groupId>
|
||||||
<artifactId>httpclient</artifactId>
|
<artifactId>commons-httpclient</artifactId>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue