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 2014/02/07 07:01:00 UTC

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

Author: edwardyoon
Date: Fri Feb  7 06:01:00 2014
New Revision: 1565540

URL: http://svn.apache.org/r1565540
Log:
HAMA-867: HAHA 0.7 Snapshot cannot work with HDFS 2X due to lack of libs

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

Modified: hama/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hama/trunk/CHANGES.txt?rev=1565540&r1=1565539&r2=1565540&view=diff
==============================================================================
--- hama/trunk/CHANGES.txt (original)
+++ hama/trunk/CHANGES.txt Fri Feb  7 06:01:00 2014
@@ -15,6 +15,7 @@ Release 0.7.0 (unreleased changes)
 
   BUG FIXES
 
+   HAMA-867: HAHA 0.7 Snapshot cannot work with HDFS 2X due to lack of libs (Skater Xu via edwardyoon)
    HAMA-862: Handling max tasks exception (edwardyoon)
    HAMA-860: Make aggregators start from the first superstep (Anastasis Andronidis)
    HAMA-857: Graph Combiners is wrongly implemented (edwardyoon)

Modified: hama/trunk/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/pom.xml?rev=1565540&r1=1565539&r2=1565540&view=diff
==============================================================================
--- hama/trunk/pom.xml (original)
+++ hama/trunk/pom.xml Fri Feb  7 06:01:00 2014
@@ -124,7 +124,7 @@
     <profile>
       <id>hadoop2</id>
       <properties>
-        <hadoop.version>2.1.0-beta</hadoop.version>
+        <hadoop.version>2.2.0</hadoop.version>
       </properties>
 
       <dependencies>
@@ -158,7 +158,17 @@
         <dependency>
           <groupId>com.google.protobuf</groupId>
           <artifactId>protobuf-java</artifactId>
-          <version>2.4.0a</version>
+          <version>2.5.0</version>
+        </dependency>
+        <dependency>
+          <groupId>commons-cli</groupId>
+          <artifactId>commons-cli</artifactId>
+          <version>1.2</version>
+        </dependency>
+        <dependency>
+          <groupId>commons-io</groupId>
+          <artifactId>commons-io</artifactId>
+          <version>2.4</version>
         </dependency>
     </dependencies>
     </profile>