From b1f285359a12345d94ae59f979d9a75482e732ce Mon Sep 17 00:00:00 2001
From: tzolov <christian.tzolov@gmail.com>
Date: Tue, 3 Jun 2014 13:26:29 -0700
Subject: [PATCH] Add support for Pivotal HD in the Maven build: SPARK-1992

Allow Spark to build against particular Pivotal HD distributions. For example to build Spark against Pivotal HD 2.0.1 one can run:
```
mvn -Pyarn -Phadoop-2.2 -Dhadoop.version=2.2.0-gphd-3.0.1.0 -DskipTests clean package
```

Author: tzolov <christian.tzolov@gmail.com>

Closes #942 from tzolov/master and squashes the following commits:

bc3e05a [tzolov] Add support for Pivotal HD in the Maven build and SBT build: [SPARK-1992]
---
 pom.xml                  | 11 +++++++++++
 project/SparkBuild.scala |  1 +
 2 files changed, 12 insertions(+)

diff --git a/pom.xml b/pom.xml
index fe43a9518b..0a5ca9e72a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -206,6 +206,17 @@
         <enabled>false</enabled>
       </snapshots>
     </repository>
+    <repository>
+      <id>spring-releases</id>
+      <name>Spring Release Repository</name>
+      <url>http://repo.spring.io/libs-release</url> 
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository> 
   </repositories>
 
   <dependencyManagement>
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 64c9441d8e..c2a20d86b2 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -212,6 +212,7 @@ object SparkBuild extends Build {
       "JBoss Repository"     at "https://repository.jboss.org/nexus/content/repositories/releases/",
       "MQTT Repository"      at "https://repo.eclipse.org/content/repositories/paho-releases/",
       "Cloudera Repository"  at "http://repository.cloudera.com/artifactory/cloudera-repos/",
+      "Pivotal Repository"   at "http://repo.spring.io/libs-release/",
       // For Sonatype publishing
       // "sonatype-snapshots"   at "https://oss.sonatype.org/content/repositories/snapshots",
       // "sonatype-staging"     at "https://oss.sonatype.org/service/local/staging/deploy/maven2/",
-- 
GitLab