From d1cd19f199ce57cb76a714a1b0e82dab27a2571d Mon Sep 17 00:00:00 2001 From: Brennen Smith Date: Mon, 2 Jul 2018 17:56:10 -0700 Subject: [PATCH] Fetch Maven packages over HTTPS search.maven.org supports HTTPS, we should be using that to transport jars for obvious reasons. --- bin/kcl-bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/kcl-bootstrap b/bin/kcl-bootstrap index ed99d31a..0df62928 100755 --- a/bin/kcl-bootstrap +++ b/bin/kcl-bootstrap @@ -217,7 +217,7 @@ function getMavenPackageUrlInfo(mavenPackage) { urlParts.push(mavenPackage.version); urlParts.push(fileName); return { - 'url': "http://search.maven.org/remotecontent?filepath=" + urlParts.join('/'), + 'url': "https://search.maven.org/remotecontent?filepath=" + urlParts.join('/'), 'fileName': fileName }; }