Skip to content

Commit b1f2853

Browse files
tzolovmateiz
authored andcommitted
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]
1 parent 45e9bc8 commit b1f2853

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,17 @@
206206
<enabled>false</enabled>
207207
</snapshots>
208208
</repository>
209+
<repository>
210+
<id>spring-releases</id>
211+
<name>Spring Release Repository</name>
212+
<url>http://repo.spring.io/libs-release</url>
213+
<releases>
214+
<enabled>true</enabled>
215+
</releases>
216+
<snapshots>
217+
<enabled>false</enabled>
218+
</snapshots>
219+
</repository>
209220
</repositories>
210221

211222
<dependencyManagement>

project/SparkBuild.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ object SparkBuild extends Build {
212212
"JBoss Repository" at "https://repository.jboss.org/nexus/content/repositories/releases/",
213213
"MQTT Repository" at "https://repo.eclipse.org/content/repositories/paho-releases/",
214214
"Cloudera Repository" at "http://repository.cloudera.com/artifactory/cloudera-repos/",
215+
"Pivotal Repository" at "http://repo.spring.io/libs-release/",
215216
// For Sonatype publishing
216217
// "sonatype-snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
217218
// "sonatype-staging" at "https://oss.sonatype.org/service/local/staging/deploy/maven2/",

0 commit comments

Comments
 (0)