Repository: spark
Updated Branches:
  refs/heads/master 646e55405 -> abf6714e2


SPARK-1254. Supplemental fix for HTTPS on Maven Central

It seems that HTTPS does not necessarily work on Maven Central, as it does not 
today at least. Back to HTTP. Both builds works from a clean repo.

Author: Sean Owen <[email protected]>

Closes #209 from srowen/SPARK-1254Fix and squashes the following commits:

bb7be47 [Sean Owen] Revert to HTTP for Maven Central repo, as it seems HTTPS 
does not necessarily work


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

Branch: refs/heads/master
Commit: abf6714e27cf07a13819b35a4ca50ff9bb28b65c
Parents: 646e554
Author: Sean Owen <[email protected]>
Authored: Sun Mar 23 10:57:01 2014 -0700
Committer: Patrick Wendell <[email protected]>
Committed: Sun Mar 23 10:57:01 2014 -0700

----------------------------------------------------------------------
 pom.xml                  | 3 ++-
 project/SparkBuild.scala | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/abf6714e/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9db34a0..fa72d5f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -132,7 +132,8 @@
     <repository>
       <id>maven-repo</id> <!-- This should be at top, it makes maven try the 
central repo first and then others and hence faster dep resolution -->
       <name>Maven Repository</name>
-      <url>https://repo.maven.apache.org/maven2</url>
+      <!-- HTTPS is unavailable for Maven Central -->
+      <url>http://repo.maven.apache.org/maven2</url>
       <releases>
         <enabled>true</enabled>
       </releases>

http://git-wip-us.apache.org/repos/asf/spark/blob/abf6714e/project/SparkBuild.scala
----------------------------------------------------------------------
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index e4ad659..b08fb26 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -182,7 +182,8 @@ object SparkBuild extends Build {
     concurrentRestrictions in Global += Tags.limit(Tags.Test, 1),
 
     resolvers ++= Seq(
-      "Maven Repository"     at "https://repo.maven.apache.org/maven2";,
+      // HTTPS is unavailable for Maven Central
+      "Maven Repository"     at "http://repo.maven.apache.org/maven2";,
       "Apache Repository"    at 
"https://repository.apache.org/content/repositories/releases";,
       "JBoss Repository"     at 
"https://repository.jboss.org/nexus/content/repositories/releases/";,
       "MQTT Repository"      at 
"https://repo.eclipse.org/content/repositories/paho-releases/";,

Reply via email to