From bafa76933b19b20926e3f8284be64a7b99094409 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Sat, 16 Mar 2019 10:49:16 -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://maven.apache.org/xsd/maven-4.0.0.xsd with 16 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://www.apache.org/licenses/LICENSE-2.0 with 15 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). * http://repo.spring.io/libs-milestone-local with 5 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 5 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 3 occurrences migrated to: https://repo.spring.io/release ([https](https://repo.spring.io/release) result 302). # Ignored These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 with 32 occurrences * http://www.w3.org/2001/XMLSchema-instance with 16 occurrences --- mvnw | 2 +- mvnw.cmd | 2 +- pom.xml | 14 +++++++------- spring-cloud-task-batch/pom.xml | 2 +- spring-cloud-task-core/pom.xml | 2 +- spring-cloud-task-dependencies/pom.xml | 12 ++++++------ spring-cloud-task-docs/pom.xml | 2 +- spring-cloud-task-integration-tests/pom.xml | 2 +- spring-cloud-task-samples/batch-events/mvnw | 2 +- spring-cloud-task-samples/batch-events/mvnw.cmd | 2 +- spring-cloud-task-samples/batch-events/pom.xml | 2 +- spring-cloud-task-samples/batch-job/mvnw | 2 +- spring-cloud-task-samples/batch-job/mvnw.cmd | 2 +- spring-cloud-task-samples/batch-job/pom.xml | 2 +- .../partitioned-batch-job/mvnw | 2 +- .../partitioned-batch-job/mvnw.cmd | 2 +- .../partitioned-batch-job/pom.xml | 2 +- spring-cloud-task-samples/pom.xml | 2 +- spring-cloud-task-samples/task-events/mvnw | 2 +- spring-cloud-task-samples/task-events/mvnw.cmd | 2 +- spring-cloud-task-samples/task-events/pom.xml | 2 +- spring-cloud-task-samples/taskprocessor/mvnw | 2 +- spring-cloud-task-samples/taskprocessor/mvnw.cmd | 2 +- spring-cloud-task-samples/taskprocessor/pom.xml | 8 ++++---- spring-cloud-task-samples/tasksink/mvnw | 2 +- spring-cloud-task-samples/tasksink/mvnw.cmd | 2 +- spring-cloud-task-samples/tasksink/pom.xml | 2 +- spring-cloud-task-samples/timestamp/pom.xml | 2 +- spring-cloud-task-starter/pom.xml | 2 +- spring-cloud-task-stream/pom.xml | 2 +- 30 files changed, 44 insertions(+), 44 deletions(-) diff --git a/mvnw b/mvnw index 0a7dac22..d0275e2c 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 0d49a2de..de330db7 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 6d3f0368..4c4a7bb2 100755 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 @@ -23,7 +23,7 @@ Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 @@ -243,7 +243,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -251,7 +251,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false @@ -259,7 +259,7 @@ spring-releases Spring Releases - http://repo.spring.io/release + https://repo.spring.io/release false @@ -269,7 +269,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -277,7 +277,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false diff --git a/spring-cloud-task-batch/pom.xml b/spring-cloud-task-batch/pom.xml index 92ebd46b..443b1c01 100644 --- a/spring-cloud-task-batch/pom.xml +++ b/spring-cloud-task-batch/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 diff --git a/spring-cloud-task-core/pom.xml b/spring-cloud-task-core/pom.xml index 8d4363d0..b4eff589 100755 --- a/spring-cloud-task-core/pom.xml +++ b/spring-cloud-task-core/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 diff --git a/spring-cloud-task-dependencies/pom.xml b/spring-cloud-task-dependencies/pom.xml index 5887073d..849cefbb 100644 --- a/spring-cloud-task-dependencies/pom.xml +++ b/spring-cloud-task-dependencies/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 spring-cloud-task-dependencies 1.0.4.BUILD-SNAPSHOT @@ -46,7 +46,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -54,7 +54,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false @@ -62,7 +62,7 @@ spring-releases Spring Releases - http://repo.spring.io/release + https://repo.spring.io/release false @@ -72,7 +72,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -80,7 +80,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false diff --git a/spring-cloud-task-docs/pom.xml b/spring-cloud-task-docs/pom.xml index c7e1686d..031a95bf 100644 --- a/spring-cloud-task-docs/pom.xml +++ b/spring-cloud-task-docs/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.cloud diff --git a/spring-cloud-task-integration-tests/pom.xml b/spring-cloud-task-integration-tests/pom.xml index 9defc97d..f1aad45e 100644 --- a/spring-cloud-task-integration-tests/pom.xml +++ b/spring-cloud-task-integration-tests/pom.xml @@ -1,5 +1,5 @@ - + spring-cloud-task-parent org.springframework.cloud diff --git a/spring-cloud-task-samples/batch-events/mvnw b/spring-cloud-task-samples/batch-events/mvnw index a1ba1bf5..02217b1e 100755 --- a/spring-cloud-task-samples/batch-events/mvnw +++ b/spring-cloud-task-samples/batch-events/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/spring-cloud-task-samples/batch-events/mvnw.cmd b/spring-cloud-task-samples/batch-events/mvnw.cmd index 2b934e89..4b98b78c 100644 --- a/spring-cloud-task-samples/batch-events/mvnw.cmd +++ b/spring-cloud-task-samples/batch-events/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/spring-cloud-task-samples/batch-events/pom.xml b/spring-cloud-task-samples/batch-events/pom.xml index a024b8c1..5cb91d2e 100644 --- a/spring-cloud-task-samples/batch-events/pom.xml +++ b/spring-cloud-task-samples/batch-events/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud diff --git a/spring-cloud-task-samples/batch-job/mvnw b/spring-cloud-task-samples/batch-job/mvnw index a1ba1bf5..02217b1e 100755 --- a/spring-cloud-task-samples/batch-job/mvnw +++ b/spring-cloud-task-samples/batch-job/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/spring-cloud-task-samples/batch-job/mvnw.cmd b/spring-cloud-task-samples/batch-job/mvnw.cmd index 2b934e89..4b98b78c 100644 --- a/spring-cloud-task-samples/batch-job/mvnw.cmd +++ b/spring-cloud-task-samples/batch-job/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/spring-cloud-task-samples/batch-job/pom.xml b/spring-cloud-task-samples/batch-job/pom.xml index 41b86268..73e29052 100644 --- a/spring-cloud-task-samples/batch-job/pom.xml +++ b/spring-cloud-task-samples/batch-job/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud diff --git a/spring-cloud-task-samples/partitioned-batch-job/mvnw b/spring-cloud-task-samples/partitioned-batch-job/mvnw index a1ba1bf5..02217b1e 100755 --- a/spring-cloud-task-samples/partitioned-batch-job/mvnw +++ b/spring-cloud-task-samples/partitioned-batch-job/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/spring-cloud-task-samples/partitioned-batch-job/mvnw.cmd b/spring-cloud-task-samples/partitioned-batch-job/mvnw.cmd index 2b934e89..4b98b78c 100644 --- a/spring-cloud-task-samples/partitioned-batch-job/mvnw.cmd +++ b/spring-cloud-task-samples/partitioned-batch-job/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/spring-cloud-task-samples/partitioned-batch-job/pom.xml b/spring-cloud-task-samples/partitioned-batch-job/pom.xml index 5e083a63..fddf7c92 100644 --- a/spring-cloud-task-samples/partitioned-batch-job/pom.xml +++ b/spring-cloud-task-samples/partitioned-batch-job/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud diff --git a/spring-cloud-task-samples/pom.xml b/spring-cloud-task-samples/pom.xml index 28224cb5..4cf3638c 100644 --- a/spring-cloud-task-samples/pom.xml +++ b/spring-cloud-task-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 diff --git a/spring-cloud-task-samples/task-events/mvnw b/spring-cloud-task-samples/task-events/mvnw index a1ba1bf5..02217b1e 100755 --- a/spring-cloud-task-samples/task-events/mvnw +++ b/spring-cloud-task-samples/task-events/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/spring-cloud-task-samples/task-events/mvnw.cmd b/spring-cloud-task-samples/task-events/mvnw.cmd index 2b934e89..4b98b78c 100644 --- a/spring-cloud-task-samples/task-events/mvnw.cmd +++ b/spring-cloud-task-samples/task-events/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/spring-cloud-task-samples/task-events/pom.xml b/spring-cloud-task-samples/task-events/pom.xml index aa32ddb2..38c3a5ca 100644 --- a/spring-cloud-task-samples/task-events/pom.xml +++ b/spring-cloud-task-samples/task-events/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud diff --git a/spring-cloud-task-samples/taskprocessor/mvnw b/spring-cloud-task-samples/taskprocessor/mvnw index a1ba1bf5..02217b1e 100755 --- a/spring-cloud-task-samples/taskprocessor/mvnw +++ b/spring-cloud-task-samples/taskprocessor/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/spring-cloud-task-samples/taskprocessor/mvnw.cmd b/spring-cloud-task-samples/taskprocessor/mvnw.cmd index 2b934e89..4b98b78c 100644 --- a/spring-cloud-task-samples/taskprocessor/mvnw.cmd +++ b/spring-cloud-task-samples/taskprocessor/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/spring-cloud-task-samples/taskprocessor/pom.xml b/spring-cloud-task-samples/taskprocessor/pom.xml index e63c57ad..aae66197 100644 --- a/spring-cloud-task-samples/taskprocessor/pom.xml +++ b/spring-cloud-task-samples/taskprocessor/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud @@ -70,7 +70,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -78,7 +78,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false @@ -86,7 +86,7 @@ spring-releases Spring Releases - http://repo.spring.io/release + https://repo.spring.io/release false diff --git a/spring-cloud-task-samples/tasksink/mvnw b/spring-cloud-task-samples/tasksink/mvnw index a1ba1bf5..02217b1e 100755 --- a/spring-cloud-task-samples/tasksink/mvnw +++ b/spring-cloud-task-samples/tasksink/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/spring-cloud-task-samples/tasksink/mvnw.cmd b/spring-cloud-task-samples/tasksink/mvnw.cmd index 2b934e89..4b98b78c 100644 --- a/spring-cloud-task-samples/tasksink/mvnw.cmd +++ b/spring-cloud-task-samples/tasksink/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/spring-cloud-task-samples/tasksink/pom.xml b/spring-cloud-task-samples/tasksink/pom.xml index c9b2ddd3..446d44ef 100644 --- a/spring-cloud-task-samples/tasksink/pom.xml +++ b/spring-cloud-task-samples/tasksink/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud diff --git a/spring-cloud-task-samples/timestamp/pom.xml b/spring-cloud-task-samples/timestamp/pom.xml index b09c598a..db0fcfa9 100644 --- a/spring-cloud-task-samples/timestamp/pom.xml +++ b/spring-cloud-task-samples/timestamp/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 diff --git a/spring-cloud-task-starter/pom.xml b/spring-cloud-task-starter/pom.xml index 6c7b7195..4b3f0026 100644 --- a/spring-cloud-task-starter/pom.xml +++ b/spring-cloud-task-starter/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 diff --git a/spring-cloud-task-stream/pom.xml b/spring-cloud-task-stream/pom.xml index f2508063..a63c1033 100644 --- a/spring-cloud-task-stream/pom.xml +++ b/spring-cloud-task-stream/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 spring-cloud-task-stream