From e90e2b267ee0fea5a3d5517c5104ffc6180d4388 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Wed, 6 Mar 2019 00:08:46 -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://jcenter.bintray.com migrated to: https://jcenter.bintray.com ([https](https://jcenter.bintray.com) result 200). * http://repo.spring.io/libs-release migrated to: https://repo.spring.io/libs-release ([https](https://repo.spring.io/libs-release) result 302). * http://repo.spring.io/milestone migrated to: https://repo.spring.io/milestone ([https](https://repo.spring.io/milestone) result 302). * http://repo.spring.io/plugins-release migrated to: https://repo.spring.io/plugins-release ([https](https://repo.spring.io/plugins-release) result 302). * http://repo.spring.io/plugins-snapshot migrated to: https://repo.spring.io/plugins-snapshot ([https](https://repo.spring.io/plugins-snapshot) result 302). * http://repo.spring.io/release migrated to: https://repo.spring.io/release ([https](https://repo.spring.io/release) result 302). * http://repo.spring.io/snapshot migrated to: https://repo.spring.io/snapshot ([https](https://repo.spring.io/snapshot) result 302). # Ignored These URLs were intentionally ignored. * http://localhost:9393/modules/processor/analytic-pmml * http://maven.apache.org/POM/4.0.0 * http://maven.apache.org/maven-v4_0_0.xsd * http://maven.apache.org/xsd/maven-4.0.0.xsd * http://www.w3.org/2001/XMLSchema-instance --- sample-modules-parent/build.gradle | 6 +++--- sample-modules-parent/buildscript.gradle | 10 +++++----- sample-modules-parent/pom.xml | 8 ++++---- samples-parent/pom.xml | 8 ++++---- smartgrid-prediction/frontend/pom.xml | 4 ++-- spark-streaming-logger-java-sink/build.gradle | 2 +- spark-streaming-logger-scala-sink/build.gradle | 2 +- spark-streaming-wordcount-java-processor/build.gradle | 2 +- spark-streaming-wordcount-scala-processor/build.gradle | 2 +- storm-product-analytics-example/redis-common/pom.xml | 4 ++-- tweet-transformer-processor/build.gradle | 6 +++--- 11 files changed, 27 insertions(+), 27 deletions(-) diff --git a/sample-modules-parent/build.gradle b/sample-modules-parent/build.gradle index fdcfba5..0d5cc63 100644 --- a/sample-modules-parent/build.gradle +++ b/sample-modules-parent/build.gradle @@ -17,9 +17,9 @@ group = 'org.springframework.xd.samples' version = '1.0.0.BUILD-SNAPSHOT' repositories { - maven { url "http://repo.spring.io/release" } + maven { url "https://repo.spring.io/release" } mavenCentral() jcenter() - maven { url "http://repo.spring.io/snapshot" } - maven { url "http://repo.spring.io/milestone" } + maven { url "https://repo.spring.io/snapshot" } + maven { url "https://repo.spring.io/milestone" } } diff --git a/sample-modules-parent/buildscript.gradle b/sample-modules-parent/buildscript.gradle index 91ccfd9..1c22d1a 100644 --- a/sample-modules-parent/buildscript.gradle +++ b/sample-modules-parent/buildscript.gradle @@ -1,10 +1,10 @@ repositories { - maven { url "http://repo.spring.io/plugins-snapshot" } - maven { url 'http://repo.spring.io/plugins-release' } - maven { url "http://repo.spring.io/release" } - maven { url "http://repo.spring.io/milestone" } - maven { url "http://repo.spring.io/snapshot" } + maven { url "https://repo.spring.io/plugins-snapshot" } + maven { url 'https://repo.spring.io/plugins-release' } + maven { url "https://repo.spring.io/release" } + maven { url "https://repo.spring.io/milestone" } + maven { url "https://repo.spring.io/snapshot" } jcenter() } dependencies { diff --git a/sample-modules-parent/pom.xml b/sample-modules-parent/pom.xml index 238c371..ded0f7c 100644 --- a/sample-modules-parent/pom.xml +++ b/sample-modules-parent/pom.xml @@ -18,12 +18,12 @@ jcenter - http://jcenter.bintray.com + https://jcenter.bintray.com spring-milestones Spring Milestones - http://repo.spring.io/milestone + https://repo.spring.io/milestone false @@ -31,7 +31,7 @@ spring-release Spring Releases - http://repo.spring.io/libs-release + https://repo.spring.io/libs-release false @@ -39,7 +39,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/snapshot + https://repo.spring.io/snapshot true diff --git a/samples-parent/pom.xml b/samples-parent/pom.xml index 4c86e42..ed518b9 100644 --- a/samples-parent/pom.xml +++ b/samples-parent/pom.xml @@ -38,12 +38,12 @@ jcenter - http://jcenter.bintray.com + https://jcenter.bintray.com spring-milestones Spring Milestones - http://repo.spring.io/milestone + https://repo.spring.io/milestone false @@ -51,7 +51,7 @@ spring-release Spring Releases - http://repo.spring.io/release + https://repo.spring.io/release false @@ -59,7 +59,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/snapshot + https://repo.spring.io/snapshot true diff --git a/smartgrid-prediction/frontend/pom.xml b/smartgrid-prediction/frontend/pom.xml index a64a7e7..f1110dc 100644 --- a/smartgrid-prediction/frontend/pom.xml +++ b/smartgrid-prediction/frontend/pom.xml @@ -80,13 +80,13 @@ spring-releases - http://repo.spring.io/libs-release + https://repo.spring.io/libs-release spring-releases - http://repo.spring.io/libs-release + https://repo.spring.io/libs-release diff --git a/spark-streaming-logger-java-sink/build.gradle b/spark-streaming-logger-java-sink/build.gradle index 4f800d1..4d6b7ea 100644 --- a/spark-streaming-logger-java-sink/build.gradle +++ b/spark-streaming-logger-java-sink/build.gradle @@ -14,7 +14,7 @@ configurations { repositories { mavenCentral() - maven { url 'http://repo.spring.io/release' } + maven { url 'https://repo.spring.io/release' } } dependencies { diff --git a/spark-streaming-logger-scala-sink/build.gradle b/spark-streaming-logger-scala-sink/build.gradle index b59189e..b2fbcfc 100644 --- a/spark-streaming-logger-scala-sink/build.gradle +++ b/spark-streaming-logger-scala-sink/build.gradle @@ -17,7 +17,7 @@ configurations { repositories { mavenCentral() - maven { url 'http://repo.spring.io/release' } + maven { url 'https://repo.spring.io/release' } } dependencies { diff --git a/spark-streaming-wordcount-java-processor/build.gradle b/spark-streaming-wordcount-java-processor/build.gradle index 6760b82..3d04f02 100644 --- a/spark-streaming-wordcount-java-processor/build.gradle +++ b/spark-streaming-wordcount-java-processor/build.gradle @@ -14,7 +14,7 @@ configurations { repositories { mavenCentral() - maven { url 'http://repo.spring.io/release' } + maven { url 'https://repo.spring.io/release' } } dependencies { diff --git a/spark-streaming-wordcount-scala-processor/build.gradle b/spark-streaming-wordcount-scala-processor/build.gradle index b59189e..b2fbcfc 100644 --- a/spark-streaming-wordcount-scala-processor/build.gradle +++ b/spark-streaming-wordcount-scala-processor/build.gradle @@ -17,7 +17,7 @@ configurations { repositories { mavenCentral() - maven { url 'http://repo.spring.io/release' } + maven { url 'https://repo.spring.io/release' } } dependencies { diff --git a/storm-product-analytics-example/redis-common/pom.xml b/storm-product-analytics-example/redis-common/pom.xml index 7192dc3..a278f7c 100644 --- a/storm-product-analytics-example/redis-common/pom.xml +++ b/storm-product-analytics-example/redis-common/pom.xml @@ -22,11 +22,11 @@ spring-io-release - http://repo.spring.io/release + https://repo.spring.io/release jcenter - http://jcenter.bintray.com + https://jcenter.bintray.com diff --git a/tweet-transformer-processor/build.gradle b/tweet-transformer-processor/build.gradle index e5685bf..7553cf6 100644 --- a/tweet-transformer-processor/build.gradle +++ b/tweet-transformer-processor/build.gradle @@ -40,10 +40,10 @@ task wrapper(type: Wrapper) { } repositories { - maven { url "http://repo.spring.io/release" } + maven { url "https://repo.spring.io/release" } mavenCentral() jcenter() - maven { url "http://repo.spring.io/snapshot" } - maven { url "http://repo.spring.io/milestone" } + maven { url "https://repo.spring.io/snapshot" } + maven { url "https://repo.spring.io/milestone" } }