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 fixed successfully.

* http://projects.spring.io/spring-batch/ migrated to:
  https://projects.spring.io/spring-batch/ ([https](https://projects.spring.io/spring-batch/) result 200).
* http://spring.io migrated to:
  https://spring.io ([https](https://spring.io) result 200).
* http://www.apache.org/licenses/LICENSE-2.0.txt migrated to:
  https://www.apache.org/licenses/LICENSE-2.0.txt ([https](https://www.apache.org/licenses/LICENSE-2.0.txt) result 200).
This commit is contained in:
Spring Operator
2019-03-05 23:30:54 -06:00
committed by Mahmoud Ben Hassine
parent 6c5476780e
commit fdf9dcde5b
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ plugins {
}
ext {
linkHomepage = 'http://projects.spring.io/spring-batch/'
linkHomepage = 'https://projects.spring.io/spring-batch/'
linkCi = 'https://build.spring.io/browse/BATCH'
linkIssue = 'https://jira.spring.io/browse/BATCH'
linkScmUrl = 'https://github.com/spring-projects/spring-batch'

View File

@@ -26,12 +26,12 @@ def customizePom(pom, gradleProject) {
url = linkHomepage
organization {
name = 'Spring'
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'
}
}