From bb4fbdb9357f2c945caa304c0b91da6d6908b532 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Sat, 16 Mar 2019 12:00:09 -0500 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 switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * 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://docs.jboss.org/jbossas/javadoc/4.0.5/connector with 1 occurrences migrated to: https://docs.jboss.org/jbossas/javadoc/4.0.5/connector ([https](https://docs.jboss.org/jbossas/javadoc/4.0.5/connector) result 301). * http://repo.springsource.org/libs-release with 2 occurrences migrated to: https://repo.springsource.org/libs-release ([https](https://repo.springsource.org/libs-release) result 301). * http://repo.springsource.org/plugins-release with 1 occurrences migrated to: https://repo.springsource.org/plugins-release ([https](https://repo.springsource.org/plugins-release) result 301). * http://spring.io/spring-statemachine with 1 occurrences migrated to: https://spring.io/spring-statemachine ([https](https://spring.io/spring-statemachine) result 302). --- build.gradle | 8 ++++---- publish-maven.gradle | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 9678d7ca..a267ee8d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { repositories { - maven { url 'http://repo.springsource.org/libs-release'} - maven { url 'http://repo.springsource.org/plugins-release' } + maven { url 'https://repo.springsource.org/libs-release'} + maven { url 'https://repo.springsource.org/plugins-release' } } dependencies { classpath("org.springframework.build.gradle:propdeps-plugin:0.0.7") @@ -45,7 +45,7 @@ configure(allprojects) { repositories { mavenCentral() - maven { url "http://repo.springsource.org/libs-release" } + maven { url "https://repo.springsource.org/libs-release" } } task integrationTest(type: Test) { @@ -278,7 +278,7 @@ configure(rootProject) { options.author = true options.header = rootProject.description options.links( - 'http://docs.jboss.org/jbossas/javadoc/4.0.5/connector' + 'https://docs.jboss.org/jbossas/javadoc/4.0.5/connector' ) // disable javadocs for samples diff --git a/publish-maven.gradle b/publish-maven.gradle index a598ddbf..902e2bf7 100644 --- a/publish-maven.gradle +++ b/publish-maven.gradle @@ -34,12 +34,12 @@ def customizePom(pom, gradleProject) { url = 'https://github.com/spring-projects/spring-statemachine' organization { name = 'SpringSource' - url = 'http://spring.io/spring-statemachine' + url = 'https://spring.io/spring-statemachine' } 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' } }