You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by ek...@apache.org on 2012/06/06 17:59:48 UTC

svn commit: r1346963 - /giraph/trunk/pom.xml

Author: ekoontz
Date: Wed Jun  6 15:59:47 2012
New Revision: 1346963

URL: http://svn.apache.org/viewvc?rev=1346963&view=rev
Log:
GIRAPH-201. add Hadoop 2.0.0 profile to maven

Modified:
    giraph/trunk/pom.xml

Modified: giraph/trunk/pom.xml
URL: http://svn.apache.org/viewvc/giraph/trunk/pom.xml?rev=1346963&r1=1346962&r2=1346963&view=diff
==============================================================================
--- giraph/trunk/pom.xml (original)
+++ giraph/trunk/pom.xml Wed Jun  6 15:59:47 2012
@@ -688,6 +688,39 @@ under the License.
 	</dependency>
       </dependencies>
     </profile>
+
+    <profile>
+      <id>hadoop_2.0.0</id>
+       <activation>
+        <property>
+          <name>hadoop</name>
+          <value>2.0.0</value>
+        </property>
+      </activation>
+      <properties>
+        <hadoop.version>2.0.0-alpha</hadoop.version>
+      </properties>
+      <dependencies>
+	<dependency>
+	  <groupId>org.apache.hadoop</groupId>
+	  <artifactId>hadoop-common</artifactId>
+	  <version>${hadoop.version}</version>
+	  <scope>provided</scope>
+	</dependency>
+	<dependency>
+	  <groupId>org.apache.hadoop</groupId>
+	  <artifactId>hadoop-mapreduce-client-core</artifactId>
+	  <version>${hadoop.version}</version>
+	  <scope>provided</scope>
+	</dependency>
+	<dependency>
+	  <groupId>org.apache.hadoop</groupId>
+	  <artifactId>hadoop-mapreduce-client-common</artifactId>
+	  <version>${hadoop.version}</version>
+	</dependency>
+      </dependencies>
+    </profile>
+
     <profile>
       <id>hadoop_trunk</id>
        <activation>