You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by er...@apache.org on 2013/02/19 18:14:20 UTC

git commit: GIRAPH-518: Set up Maven to support Hadop-2.0.3-alpha release (ereisman)

Updated Branches:
  refs/heads/trunk fc04335f6 -> fd50af275


GIRAPH-518: Set up Maven to support Hadop-2.0.3-alpha release (ereisman)


Project: http://git-wip-us.apache.org/repos/asf/giraph/repo
Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/fd50af27
Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/fd50af27
Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/fd50af27

Branch: refs/heads/trunk
Commit: fd50af275210490bfff6aad85fa895362a5bbf1b
Parents: fc04335
Author: Eli Reisman <er...@apache.org>
Authored: Tue Feb 19 09:13:32 2013 -0800
Committer: Eli Reisman <er...@apache.org>
Committed: Tue Feb 19 09:13:32 2013 -0800

----------------------------------------------------------------------
 CHANGELOG               |    2 ++
 giraph-core/pom.xml     |    4 ++++
 giraph-examples/pom.xml |    4 ++++
 pom.xml                 |   22 ++++++++++++++++++++++
 4 files changed, 32 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/giraph/blob/fd50af27/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index c78f0d5..21ddf45 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,8 @@
 Giraph Change Log
 
 Release 0.2.0 - unreleased
+  GIRAPH-518: Support Hadoop-2.0.3-alpha release on Giraph (ereisman)
+
   GIRAPH-525: Add PartitionClass to the ConfigurationUtils (claudio)
 
   GIRAPH-514: DiskBackedMessageStores should take advantage of machines with multiple disks (claudio)

http://git-wip-us.apache.org/repos/asf/giraph/blob/fd50af27/giraph-core/pom.xml
----------------------------------------------------------------------
diff --git a/giraph-core/pom.xml b/giraph-core/pom.xml
index b0c51b5..5ce3eaa 100644
--- a/giraph-core/pom.xml
+++ b/giraph-core/pom.xml
@@ -252,6 +252,10 @@ under the License.
     </profile>
 
     <profile>
+      <id>hadoop_2.0.3</id>
+    </profile>
+ 
+    <profile>
       <id>hadoop_trunk</id>
     </profile>
   </profiles>

http://git-wip-us.apache.org/repos/asf/giraph/blob/fd50af27/giraph-examples/pom.xml
----------------------------------------------------------------------
diff --git a/giraph-examples/pom.xml b/giraph-examples/pom.xml
index 478fe39..a625511 100644
--- a/giraph-examples/pom.xml
+++ b/giraph-examples/pom.xml
@@ -234,6 +234,10 @@ under the License.
     </profile>
 
     <profile>
+        <id>hadoop_2.0.3</id>
+    </profile>
+
+    <profile>
       <id>hadoop_trunk</id>
     </profile>
   </profiles>

http://git-wip-us.apache.org/repos/asf/giraph/blob/fd50af27/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d1e8fbb..c075762 100644
--- a/pom.xml
+++ b/pom.xml
@@ -776,6 +776,28 @@ under the License.
     </profile>
 
     <profile>
+       <id>hadoop_2.0.3</id>
+       <properties>
+         <hadoop.version>2.0.3-alpha</hadoop.version>
+       </properties>
+       <dependencies>
+         <!-- sorted lexicographically -->
+         <dependency>
+           <groupId>org.apache.hadoop</groupId>
+           <artifactId>hadoop-common</artifactId>
+         </dependency>
+         <dependency>
+           <groupId>org.apache.hadoop</groupId>
+           <artifactId>hadoop-mapreduce-client-common</artifactId>
+         </dependency>
+         <dependency>
+           <groupId>org.apache.hadoop</groupId>
+           <artifactId>hadoop-mapreduce-client-core</artifactId>
+         </dependency>
+       </dependencies>
+     </profile>
+
+    <profile>
       <id>hadoop_trunk</id>
       <properties>
         <hadoop.version>3.0.0-SNAPSHOT</hadoop.version>