Repository: spark
Updated Branches:
  refs/heads/master da8c59bde -> b0bdfce9c


[MINOR][BUILD] Download RAT and R version info over HTTPS; use RAT 0.12

## What changes were proposed in this pull request?

This is trivial, but bugged me. We should download software over HTTPS.
And we can use RAT 0.12 while at it to pick up bug fixes.

## How was this patch tested?

N/A

Author: Sean Owen <so...@cloudera.com>

Closes #18927 from srowen/Rat012.


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

Branch: refs/heads/master
Commit: b0bdfce9cae986096f327e2c7a5bdaa900dedc32
Parents: da8c59b
Author: Sean Owen <so...@cloudera.com>
Authored: Sat Aug 12 14:31:05 2017 +0900
Committer: hyukjinkwon <gurwls...@gmail.com>
Committed: Sat Aug 12 14:31:05 2017 +0900

----------------------------------------------------------------------
 dev/appveyor-install-dependencies.ps1 | 2 +-
 dev/check-license                     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/b0bdfce9/dev/appveyor-install-dependencies.ps1
----------------------------------------------------------------------
diff --git a/dev/appveyor-install-dependencies.ps1 
b/dev/appveyor-install-dependencies.ps1
index a357fbf..e6afb18 100644
--- a/dev/appveyor-install-dependencies.ps1
+++ b/dev/appveyor-install-dependencies.ps1
@@ -26,7 +26,7 @@ Function InstallR {
   }
 
   $urlPath = ""
-  $latestVer = $(ConvertFrom-JSON $(Invoke-WebRequest 
http://rversions.r-pkg.org/r-release-win).Content).version
+  $latestVer = $(ConvertFrom-JSON $(Invoke-WebRequest 
https://rversions.r-pkg.org/r-release-win).Content).version
   If ($rVer -ne $latestVer) {
     $urlPath = ("old/" + $rVer + "/")
   }

http://git-wip-us.apache.org/repos/asf/spark/blob/b0bdfce9/dev/check-license
----------------------------------------------------------------------
diff --git a/dev/check-license b/dev/check-license
index 678e73f..8cee09a 100755
--- a/dev/check-license
+++ b/dev/check-license
@@ -20,7 +20,7 @@
 
 acquire_rat_jar () {
 
-  
URL="http://repo1.maven.org/maven2/org/apache/rat/apache-rat/${RAT_VERSION}/apache-rat-${RAT_VERSION}.jar";
+  
URL="https://repo1.maven.org/maven2/org/apache/rat/apache-rat/${RAT_VERSION}/apache-rat-${RAT_VERSION}.jar";
 
   JAR="$rat_jar"
 
@@ -58,7 +58,7 @@ else
     declare java_cmd=java
 fi
 
-export RAT_VERSION=0.11
+export RAT_VERSION=0.12
 export rat_jar="$FWDIR"/lib/apache-rat-${RAT_VERSION}.jar
 mkdir -p "$FWDIR"/lib
 


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

Reply via email to