From 31508f9a6ccce7ea27c272a630a48cd80dcf7388 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Sat, 16 Mar 2019 08:34:58 -0700 Subject: [PATCH] URL Cleanup (#91) 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://maven.apache.org/xsd/maven-4.0.0.xsd with 3 occurrences migrated to: https://maven.apache.org/xsd/maven-4.0.0.xsd ([https](https://maven.apache.org/xsd/maven-4.0.0.xsd) result 200). * http://projects.spring.io/spring-cloud/ with 1 occurrences migrated to: https://projects.spring.io/spring-cloud/ ([https](https://projects.spring.io/spring-cloud/) result 200). * http://www.apache.org/licenses/LICENSE-2.0 with 6 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). * http://www.spring.io with 6 occurrences migrated to: https://www.spring.io ([https](https://www.spring.io) result 301). * http://repo.spring.io/libs-milestone-local with 4 occurrences migrated to: https://repo.spring.io/libs-milestone-local ([https](https://repo.spring.io/libs-milestone-local) result 302). * http://repo.spring.io/libs-snapshot-local with 4 occurrences migrated to: https://repo.spring.io/libs-snapshot-local ([https](https://repo.spring.io/libs-snapshot-local) result 302). * http://repo.spring.io/release with 2 occurrences migrated to: https://repo.spring.io/release ([https](https://repo.spring.io/release) result 302). * http://spring.io/spring-cloud with 1 occurrences migrated to: https://spring.io/spring-cloud ([https](https://spring.io/spring-cloud) result 302). # Ignored These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 with 6 occurrences * http://www.w3.org/2001/XMLSchema-instance with 3 occurrences --- mvnw | 2 +- mvnw.cmd | 2 +- pom.xml | 24 ++++++++++++------------ spring-cloud-build-tools/pom.xml | 2 +- spring-cloud-dependencies-parent/pom.xml | 24 ++++++++++++------------ 5 files changed, 27 insertions(+), 27 deletions(-) diff --git a/mvnw b/mvnw index 53c0d721..02f96ace 100755 --- a/mvnw +++ b/mvnw @@ -8,7 +8,7 @@ # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an diff --git a/mvnw.cmd b/mvnw.cmd index fc830243..eb9a292a 100644 --- a/mvnw.cmd +++ b/mvnw.cmd @@ -7,7 +7,7 @@ @REM "License"); you may not use this file except in compliance @REM with the License. You may obtain a copy of the License at @REM -@REM http://www.apache.org/licenses/LICENSE-2.0 +@REM https://www.apache.org/licenses/LICENSE-2.0 @REM @REM Unless required by applicable law or agreed to in writing, @REM software distributed under the License is distributed on an diff --git a/pom.xml b/pom.xml index db57d37c..25b52f1a 100644 --- a/pom.xml +++ b/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 org.springframework.cloud spring-cloud-build @@ -12,7 +12,7 @@ spring-cloud-dependencies-parent spring-cloud-build-tools - http://spring.io/spring-cloud + https://spring.io/spring-cloud 1.7 @ @@ -33,12 +33,12 @@ Pivotal Software, Inc. - http://www.spring.io + https://www.spring.io Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Copyright 2014-2015 the original author or authors. @@ -46,7 +46,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -70,7 +70,7 @@ limitations under the License. Dave Syer dsyer at pivotal.io Pivotal Software, Inc. - http://www.spring.io + https://www.spring.io Project lead @@ -80,7 +80,7 @@ limitations under the License. Spencer Gibb sgibb at pivotal.io Pivotal Software, Inc. - http://www.spring.io + https://www.spring.io Project lead @@ -398,7 +398,7 @@ limitations under the License. spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -406,7 +406,7 @@ limitations under the License. spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false @@ -414,7 +414,7 @@ limitations under the License. spring-releases Spring Releases - http://repo.spring.io/release + https://repo.spring.io/release false @@ -424,7 +424,7 @@ limitations under the License. spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -432,7 +432,7 @@ limitations under the License. spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false diff --git a/spring-cloud-build-tools/pom.xml b/spring-cloud-build-tools/pom.xml index 1f79b7ce..2ef62e04 100644 --- a/spring-cloud-build-tools/pom.xml +++ b/spring-cloud-build-tools/pom.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 org.springframework.cloud spring-cloud-build-tools diff --git a/spring-cloud-dependencies-parent/pom.xml b/spring-cloud-dependencies-parent/pom.xml index 1d3eb088..e2790bd0 100644 --- a/spring-cloud-dependencies-parent/pom.xml +++ b/spring-cloud-dependencies-parent/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 org.springframework.cloud 1.1.4.BUILD-SNAPSHOT @@ -8,15 +8,15 @@ pom spring-cloud-dependencies-parent Spring Cloud Build Dependencies - http://projects.spring.io/spring-cloud/ + https://projects.spring.io/spring-cloud/ Pivotal Software, Inc. - http://www.spring.io + https://www.spring.io Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Copyright 2014-2015 the original author or authors. @@ -24,7 +24,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -48,7 +48,7 @@ limitations under the License. Dave Syer dsyer at pivotal.io Pivotal Software, Inc. - http://www.spring.io + https://www.spring.io Project lead @@ -58,7 +58,7 @@ limitations under the License. Spencer Gibb sgibb at pivotal.io Pivotal Software, Inc. - http://www.spring.io + https://www.spring.io Project lead @@ -147,7 +147,7 @@ limitations under the License. spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -155,7 +155,7 @@ limitations under the License. spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false @@ -163,7 +163,7 @@ limitations under the License. spring-releases Spring Releases - http://repo.spring.io/release + https://repo.spring.io/release false @@ -173,7 +173,7 @@ limitations under the License. spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -181,7 +181,7 @@ limitations under the License. spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false