From de95c7f92abd1a9eaa5f6f6f2cb3133525ff46fa Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Mon, 11 Mar 2019 21:33:04 -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). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://dist.gemstone.com.s3.amazonaws.com/maven/release (404) could not be migrated: ([https](https://dist.gemstone.com.s3.amazonaws.com/maven/release) result SSLHandshakeException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://mirrors.ibiblio.org/pub/mirrors/maven2 (301) migrated to: /maven2 ([https](https://mirrors.ibiblio.org/pub/mirrors/maven2) result IllegalArgumentException). * http://repository.springsource.com/maven/bundles/external (404) migrated to: https://repository.springsource.com/maven/bundles/external ([https](https://repository.springsource.com/maven/bundles/external) result 404). * http://repository.springsource.com/maven/bundles/release (404) migrated to: https://repository.springsource.com/maven/bundles/release ([https](https://repository.springsource.com/maven/bundles/release) result 404). ## 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://maven.springframework.org/milestone migrated to: https://maven.springframework.org/milestone ([https](https://maven.springframework.org/milestone) result 302). * http://maven.springframework.org/snapshot migrated to: https://maven.springframework.org/snapshot ([https](https://maven.springframework.org/snapshot) result 302). * http://repo1.maven.org/maven2 migrated to: https://repo1.maven.org/maven2 ([https](https://repo1.maven.org/maven2) result 302). # Ignored These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 * http://maven.apache.org/maven-v4_0_0.xsd * http://www.w3.org/2001/XMLSchema-instance --- app/pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/pom.xml b/app/pom.xml index 18ce8a8..f07c0cb 100644 --- a/app/pom.xml +++ b/app/pom.xml @@ -168,7 +168,7 @@ org.springsource.maven.snapshot SpringSource Maven Central-compatible Snapshot Repository - http://maven.springframework.org/snapshot + https://maven.springframework.org/snapshot daily @@ -176,25 +176,25 @@ spring-milestone Spring Maven MILESTONE Repository - http://maven.springframework.org/milestone + https://maven.springframework.org/milestone standard repo - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 mirror repo - http://mirrors.ibiblio.org/pub/mirrors/maven2 + /maven2 com.springsource.repository.bundles.release SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases - http://repository.springsource.com/maven/bundles/release + https://repository.springsource.com/maven/bundles/release com.springsource.repository.bundles.external SpringSource Enterprise Bundle Repository - External Bundle Releases - http://repository.springsource.com/maven/bundles/external + https://repository.springsource.com/maven/bundles/external gemstone