From fdf9dcde5b08a1fa2895948df87f2964b9bf0c41 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Tue, 5 Mar 2019 23:30:54 -0600 Subject: [PATCH] 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). --- build.gradle | 2 +- publish-maven.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 5b0521caa..1bbb69981 100644 --- a/build.gradle +++ b/build.gradle @@ -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' diff --git a/publish-maven.gradle b/publish-maven.gradle index aa7bebbae..6c3625aa0 100644 --- a/publish-maven.gradle +++ b/publish-maven.gradle @@ -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' } }