aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2014-03-23 10:57:01 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-03-23 10:57:01 -0700
commitabf6714e27cf07a13819b35a4ca50ff9bb28b65c (patch)
treed88de822263f6e959fbfa80af5ee31a9a65b0c1a /pom.xml
parent646e55405b433fdedc9601dab91f99832b641f87 (diff)
downloadspark-abf6714e27cf07a13819b35a4ca50ff9bb28b65c.tar.gz
spark-abf6714e27cf07a13819b35a4ca50ff9bb28b65c.tar.bz2
spark-abf6714e27cf07a13819b35a4ca50ff9bb28b65c.zip
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 <sowen@cloudera.com> 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
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 9db34a01ba..fa72d5f263 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>