Repository: hadoop Updated Branches: refs/heads/branch-2 2a1bb6cb6 -> 32c7791a6
HADOOP-12552. Fix undeclared/unused dependency to httpclient (iwasakims) (cherry picked from commit 809ebc0b146135d86433e9c7bfa17e294b7928f2) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/32c7791a Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/32c7791a Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/32c7791a Branch: refs/heads/branch-2 Commit: 32c7791a6c9e74af0a6ea80c8429a3eddc96a94c Parents: 2a1bb6c Author: Masatake Iwasaki <[email protected]> Authored: Mon Feb 29 18:20:14 2016 +0900 Committer: Masatake Iwasaki <[email protected]> Committed: Mon Feb 29 18:23:33 2016 +0900 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 2 ++ hadoop-common-project/hadoop-common/pom.xml | 4 ++-- hadoop-tools/hadoop-openstack/pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/32c7791a/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 17dc1f0..773edd0 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -80,6 +80,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 http://git-wip-us.apache.org/repos/asf/hadoop/blob/32c7791a/hadoop-common-project/hadoop-common/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/pom.xml b/hadoop-common-project/hadoop-common/pom.xml index 3cfcfa2..947cff3 100644 --- a/hadoop-common-project/hadoop-common/pom.xml +++ b/hadoop-common-project/hadoop-common/pom.xml @@ -64,8 +64,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> http://git-wip-us.apache.org/repos/asf/hadoop/blob/32c7791a/hadoop-tools/hadoop-openstack/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-tools/hadoop-openstack/pom.xml b/hadoop-tools/hadoop-openstack/pom.xml index cd88d13..ea2e75d 100644 --- a/hadoop-tools/hadoop-openstack/pom.xml +++ b/hadoop-tools/hadoop-openstack/pom.xml @@ -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>
