From f9dbd4b875785b2377d473d34a588b5c7a58e417 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Wed, 20 Mar 2019 04:41:57 -0700 Subject: [PATCH] DATAGRAPH-1208 - 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 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://www.puppycrawl.com/dtds/suppressions_1_1.dtd (404) with 1 occurrences migrated to: https://www.puppycrawl.com/dtds/suppressions_1_1.dtd ([https](https://www.puppycrawl.com/dtds/suppressions_1_1.dtd) 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.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://www.springframework.org/schema/beans/spring-beans.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/beans/spring-beans.xsd ([https](https://www.springframework.org/schema/beans/spring-beans.xsd) result 200). * http://www.springframework.org/schema/context/spring-context.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/context/spring-context.xsd ([https](https://www.springframework.org/schema/context/spring-context.xsd) result 200). * http://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd ([https](https://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd) result 200). * http://www.springframework.org/schema/mvc/spring-mvc.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/mvc/spring-mvc.xsd ([https](https://www.springframework.org/schema/mvc/spring-mvc.xsd) result 200). # Ignored These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 with 6 occurrences * http://www.springframework.org/schema/beans with 2 occurrences * http://www.springframework.org/schema/context with 2 occurrences * http://www.springframework.org/schema/data/neo4j with 2 occurrences * http://www.springframework.org/schema/mvc with 2 occurrences * http://www.w3.org/2001/XMLSchema-instance with 4 occurrences Original Pull Request: #473 --- checkstyle/suppressions.xml | 2 +- pom.xml | 2 +- spring-data-neo4j-distribution/pom.xml | 2 +- spring-data-neo4j/pom.xml | 2 +- .../xml-based-configuration-applicationContext.xml | 8 ++++---- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/checkstyle/suppressions.xml b/checkstyle/suppressions.xml index 3875722d5..59845ab3b 100644 --- a/checkstyle/suppressions.xml +++ b/checkstyle/suppressions.xml @@ -1,7 +1,7 @@ + "https://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> diff --git a/pom.xml b/pom.xml index fe3315e80..b21af3f6e 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ | limitations under the License. --> + 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.data diff --git a/spring-data-neo4j-distribution/pom.xml b/spring-data-neo4j-distribution/pom.xml index 9702cf296..fc7557987 100644 --- a/spring-data-neo4j-distribution/pom.xml +++ b/spring-data-neo4j-distribution/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 diff --git a/spring-data-neo4j/pom.xml b/spring-data-neo4j/pom.xml index bec009dbb..7c373dea2 100644 --- a/spring-data-neo4j/pom.xml +++ b/spring-data-neo4j/pom.xml @@ -15,7 +15,7 @@ | limitations under the License. --> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 diff --git a/spring-data-neo4j/src/test/resources/xml-based-configuration-applicationContext.xml b/spring-data-neo4j/src/test/resources/xml-based-configuration-applicationContext.xml index ebec8b65d..52ebb7b8f 100644 --- a/spring-data-neo4j/src/test/resources/xml-based-configuration-applicationContext.xml +++ b/spring-data-neo4j/src/test/resources/xml-based-configuration-applicationContext.xml @@ -4,10 +4,10 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" - xsi:schemaLocation="http://www.springframework.org/schema/data/neo4j http://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd - http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd - http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd - http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/data/neo4j https://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd + http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd + http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">