Updated Branches:
  refs/heads/trunk 9fe961d5c -> 2ad6df94b

GIRAPH-418: Create maven profile for CDH 4.1.2


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

Branch: refs/heads/trunk
Commit: 2ad6df94b79ff0b2c52e5df250601dc99a9fbade
Parents: 9fe961d
Author: Eugene Joseph Koontz <[email protected]>
Authored: Wed Jan 23 10:28:32 2013 +0800
Committer: Eugene Joseph Koontz <[email protected]>
Committed: Thu Jan 24 00:19:41 2013 +0800

----------------------------------------------------------------------
 pom.xml |   76 +++++++++++++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 70 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/giraph/blob/2ad6df94/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 88868ba..19e7ec8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -196,22 +196,32 @@ under the License.
 
   <repositories>
     <repository>
-      <snapshots>
-        <enabled>true</enabled>
-      </snapshots>
+      <id>cloudera cdh</id>
+      <url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
       <releases>
-        <enabled>false</enabled>
+       <enabled>true</enabled>
       </releases>
+      <snapshots>
+       <enabled>false</enabled>
+      </snapshots>
+    </repository>
+    <repository>
       <id>apache snapshots</id>
       <name>www.apache.org</name>
       <url>https://repository.apache.org/content/repositories/snapshots</url>
+      <snapshots>
+       <enabled>true</enabled>
+      </snapshots>
+      <releases>
+       <enabled>false</enabled>
+      </releases>
     </repository>
     <repository>
       <snapshots>
-        <enabled>false</enabled>
+       <enabled>false</enabled>
       </snapshots>
       <releases>
-        <enabled>true</enabled>
+       <enabled>true</enabled>
       </releases>
       <id>apache releases</id>
       <name>www.apache.org</name>
@@ -642,6 +652,60 @@ under the License.
       </dependencies>
     </profile>
 
+    <profile>
+      <id>hadoop_cdh4.1.2</id>
+      <properties>
+        <hadoop.version>2.0.0-cdh4.1.2</hadoop.version> 
+        <munge.symbols>HADOOP_1_SECRET_MANAGER</munge.symbols>
+      </properties>
+      <dependencies>
+        <dependency>
+          <groupId>commons-net</groupId>
+          <artifactId>commons-net</artifactId>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
+          <version>${hadoop.version}</version>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
+          <version>${hadoop.version}</version>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-mapreduce-client-hs</artifactId>
+          <version>${hadoop.version}</version>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-mapreduce-client-core</artifactId>
+          <version>${hadoop.version}</version>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-mapreduce-client-common</artifactId>
+          <version>${hadoop.version}</version>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-common</artifactId>
+          <version>${hadoop.version}</version>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-auth</artifactId>
+          <version>${hadoop.version}</version>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-client</artifactId>
+          <version>${hadoop.version}</version>
+        </dependency>
+      </dependencies>
+    </profile>
+
     <!-- Help keep future Hadoop versions munge-free:
          All profiles below are munge-free: avoid introducing any munge
          flags on any of the following profiles. -->

Reply via email to