From 573b1ce05635196fd73082b530e7fc014a141186 Mon Sep 17 00:00:00 2001 From: Inluminous Date: Sat, 7 Mar 2020 16:10:38 +0100 Subject: [PATCH] Update Maven URL from HTTP to HTTPS Since January 15, 2020 Maven Central no longer supports insecure communication over plain HTTP and requires that all requests to the repository are encrypted over HTTPS. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 04d375e3..3bf4879f 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { repositories { mavenLocal() maven { - url = 'http://repo.maven.apache.org/maven2' + url = 'https://repo.maven.apache.org/maven2' } }