URL Cleanup

This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener).

# Fixed URLs

## Fixed Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.

* http://spring.io with 1 occurrences migrated to:
  https://spring.io ([https](https://spring.io) result 200).
* http://www.apache.org/licenses/LICENSE-2.0.txt with 1 occurrences migrated to:
  https://www.apache.org/licenses/LICENSE-2.0.txt ([https](https://www.apache.org/licenses/LICENSE-2.0.txt) result 200).
* http://repo.spring.io/libs-staging-local with 1 occurrences migrated to:
  https://repo.spring.io/libs-staging-local ([https](https://repo.spring.io/libs-staging-local) result 302).
This commit is contained in:
Spring Operator
2019-03-16 11:52:57 -05:00
committed by Artem Bilan
parent 47ba3ba531
commit 9ef4e6215b
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ allprojects {
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
maven { url 'https://repo.spring.io/libs-snapshot' }
}
// maven { url 'http://repo.spring.io/libs-staging-local' }
// maven { url 'https://repo.spring.io/libs-staging-local' }
}
}

View File

@@ -34,12 +34,12 @@ def customizePom(pom, gradleProject) {
url = linkHomepage
organization {
name = 'SpringIO'
url = 'http://spring.io'
url = 'https://spring.io'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
url 'https://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}