HADOOP-12552. Fix undeclared/unused dependency to httpclient (iwasakims)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/809ebc0b Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/809ebc0b Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/809ebc0b Branch: refs/heads/HDFS-1312 Commit: 809ebc0b146135d86433e9c7bfa17e294b7928f2 Parents: e3ac231 Author: Masatake Iwasaki <[email protected]> Authored: Mon Feb 29 18:20:14 2016 +0900 Committer: Masatake Iwasaki <[email protected]> Committed: Mon Feb 29 18:20:14 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/809ebc0b/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 64ec531..eb33464 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -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 http://git-wip-us.apache.org/repos/asf/hadoop/blob/809ebc0b/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 7e4d090..503f312 100644 --- a/hadoop-common-project/hadoop-common/pom.xml +++ b/hadoop-common-project/hadoop-common/pom.xml @@ -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> http://git-wip-us.apache.org/repos/asf/hadoop/blob/809ebc0b/hadoop-tools/hadoop-openstack/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-tools/hadoop-openstack/pom.xml b/hadoop-tools/hadoop-openstack/pom.xml index 1b541e2..542a523 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>
