You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by sr...@apache.org on 2016/04/06 16:28:56 UTC

spark git commit: [SPARK-14430][BUILD] use https while downloading binaries from build/mvn

Repository: spark
Updated Branches:
  refs/heads/master 24015199f -> 5e64dab86


[SPARK-14430][BUILD] use https while downloading binaries from build/mvn

## What changes were proposed in this pull request?

`./build/mvn` file was downloading binaries in non HTTPS mode. This PR tends to fix it.

## How was this patch tested?

By running `./build/mvn clean package` locally

Author: Prajwal Tuladhar <pr...@infynyxx.com>

Closes #12182 from infynyxx/mvn_use_https.


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

Branch: refs/heads/master
Commit: 5e64dab868be1a0d415fb6d6dd3463e7171fdd1a
Parents: 2401519
Author: Prajwal Tuladhar <pr...@infynyxx.com>
Authored: Wed Apr 6 15:28:52 2016 +0100
Committer: Sean Owen <so...@cloudera.com>
Committed: Wed Apr 6 15:28:52 2016 +0100

----------------------------------------------------------------------
 build/mvn | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/5e64dab8/build/mvn
----------------------------------------------------------------------
diff --git a/build/mvn b/build/mvn
index 58058c0..41c0850 100755
--- a/build/mvn
+++ b/build/mvn
@@ -72,7 +72,7 @@ install_mvn() {
   local MVN_VERSION="3.3.9"
 
   install_app \
-    "http://archive.apache.org/dist/maven/maven-3/${MVN_VERSION}/binaries" \
+    "https://archive.apache.org/dist/maven/maven-3/${MVN_VERSION}/binaries" \
     "apache-maven-${MVN_VERSION}-bin.tar.gz" \
     "apache-maven-${MVN_VERSION}/bin/mvn"
 
@@ -84,7 +84,7 @@ install_zinc() {
   local zinc_path="zinc-0.3.9/bin/zinc"
   [ ! -f "${_DIR}/${zinc_path}" ] && ZINC_INSTALL_FLAG=1
   install_app \
-    "http://downloads.typesafe.com/zinc/0.3.9" \
+    "https://downloads.typesafe.com/zinc/0.3.9" \
     "zinc-0.3.9.tgz" \
     "${zinc_path}"
   ZINC_BIN="${_DIR}/${zinc_path}"
@@ -100,7 +100,7 @@ install_scala() {
   local scala_bin="${_DIR}/scala-${scala_version}/bin/scala"
 
   install_app \
-    "http://downloads.typesafe.com/scala/${scala_version}" \
+    "https://downloads.typesafe.com/scala/${scala_version}" \
     "scala-${scala_version}.tgz" \
     "scala-${scala_version}/bin/scala"
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org