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.
This commit is contained in:
Inluminous 2020-03-07 16:10:38 +01:00
parent 8b416b1267
commit 573b1ce056

View File

@ -5,7 +5,7 @@ plugins {
repositories {
mavenLocal()
maven {
url = 'http://repo.maven.apache.org/maven2'
url = 'https://repo.maven.apache.org/maven2'
}
}