HADOOP-12552. Fix undeclared/unused dependency to httpclient (iwasakims)

This commit is contained in:
Masatake Iwasaki 2016-02-29 18:20:14 +09:00
parent e3ac231f72
commit 809ebc0b14
3 changed files with 6 additions and 4 deletions

View File

@ -733,6 +733,8 @@ Release 2.8.0 - UNRELEASED
HADOOP-12416. Trash messages should be handled by Logger instead of being
delivered on System.out. (Mingliang Liu via aajisaka)
HADOOP-12552. Fix undeclared/unused dependency to httpclient (iwasakims)
NEW FEATURES
HADOOP-11226. Add a configuration to set ipc.Client's traffic class with

View File

@ -66,8 +66,8 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>compile</scope>
</dependency>
<dependency>

View File

@ -113,8 +113,8 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<scope>compile</scope>
</dependency>