From 98866b4497bf3e963af111cda83521d26cbd573b Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Sat, 16 Mar 2019 11:15:59 -0500 Subject: [PATCH] DATAGEODE-176 - 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). 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 1 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://repo.springsource.org/libs-snapshot with 1 occurrences migrated to: https://repo.springsource.org/libs-snapshot ([https](https://repo.springsource.org/libs-snapshot) result 301). These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 with 2 occurrences * http://www.w3.org/2001/XMLSchema-instance with 1 occurrences Resolves gh-10. --- pom.xml | 2 +- samples/hello-world/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ae77ce15..368e9f2d 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 diff --git a/samples/hello-world/build.gradle b/samples/hello-world/build.gradle index 789093dc..a1ecdd7b 100644 --- a/samples/hello-world/build.gradle +++ b/samples/hello-world/build.gradle @@ -10,7 +10,7 @@ apply plugin: 'application' repositories { // Public Spring artefacts - maven { url "http://repo.springsource.org/libs-snapshot" } + maven { url "https://repo.springsource.org/libs-snapshot" } mavenLocal() }