You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by ed...@apache.org on 2012/08/21 02:34:36 UTC

svn commit: r1375349 - in /hama/trunk: CHANGES.txt core/pom.xml pom.xml

Author: edwardyoon
Date: Tue Aug 21 00:34:36 2012
New Revision: 1375349

URL: http://svn.apache.org/viewvc?rev=1375349&view=rev
Log:
Add commons-httpclient

Modified:
    hama/trunk/CHANGES.txt
    hama/trunk/core/pom.xml
    hama/trunk/pom.xml

Modified: hama/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hama/trunk/CHANGES.txt?rev=1375349&r1=1375348&r2=1375349&view=diff
==============================================================================
--- hama/trunk/CHANGES.txt (original)
+++ hama/trunk/CHANGES.txt Tue Aug 21 00:34:36 2012
@@ -6,6 +6,7 @@ Release 0.6 (unreleased changes)
 
   BUG FIXES
 
+   HAMA-631: Add "commons-httpclient-3.1.jar" (Paul Gyuho Song via edwardyoon)
    HAMA-608: LocalRunner should honor the configured queues (tjungblut)
 
   IMPROVEMENTS

Modified: hama/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/core/pom.xml?rev=1375349&r1=1375348&r2=1375349&view=diff
==============================================================================
--- hama/trunk/core/pom.xml (original)
+++ hama/trunk/core/pom.xml Tue Aug 21 00:34:36 2012
@@ -63,6 +63,10 @@
       <version>3.0</version>
     </dependency>
     <dependency>
+      <groupId>commons-httpclient</groupId>
+      <artifactId>commons-httpclient</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
       <version>${ant.version}</version>

Modified: hama/trunk/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/pom.xml?rev=1375349&r1=1375348&r2=1375349&view=diff
==============================================================================
--- hama/trunk/pom.xml (original)
+++ hama/trunk/pom.xml Tue Aug 21 00:34:36 2012
@@ -90,6 +90,7 @@
     <commons-cli.version>1.2</commons-cli.version>
     <commons-configuration>1.7</commons-configuration>
     <commons-lang>2.6</commons-lang>
+    <commons-httpclient>3.0.1</commons-httpclient>
     <hadoop.version>1.0.0</hadoop.version>
     <jetty.version>6.1.14</jetty.version>
     <junit.version>4.8.1</junit.version>
@@ -133,6 +134,11 @@
         <version>${commons-lang}</version>
       </dependency>
       <dependency>
+        <groupId>commons-httpclient</groupId>
+        <artifactId>commons-httpclient</artifactId>
+        <version>${commons-httpclient}</version>
+      </dependency>
+      <dependency>
         <groupId>org.mortbay.jetty</groupId>
         <artifactId>jetty</artifactId>
         <version>${jetty.version}</version>