URL Cleanup

- Ensure Gradle Wrapper is downloaded via https
- This project uses an old version of Gradle in which mavenCentral() and
  jcenter() use http instead of https. This commit switches to use an
  explicit URL so https is used.
This commit is contained in:
Spring Operator
2019-03-27 22:30:23 -05:00
committed by Artem Bilan
parent 9e936f5b42
commit 2ab00f0818
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ allprojects {
}
maven { url 'https://repo.spring.io/libs-milestone' }
maven { url 'https://repo.spring.io/plugins-release' }
mavenCentral()
maven { url 'https://repo.maven.apache.org/maven2/' }
}
ext.javadocLinks = [

View File

@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-1.12-all.zip