Browse Source

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

(cherry picked from commit 809ebc0b146135d86433e9c7bfa17e294b7928f2)
Masatake Iwasaki 9 years ago
parent
commit
c7824e8e9e

+ 2 - 0
hadoop-common-project/hadoop-common/CHANGES.txt

@@ -9,6 +9,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

+ 2 - 2
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>

+ 2 - 2
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>