From 75b039a477627eef699a2362bc3400c19c8d76c8 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Wed, 20 Mar 2019 04:38:23 -0700 Subject: [PATCH] DATAES-549 - 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 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://www.springframework.org/schema/beans/spring-beans-3.1.xsd with 19 occurrences migrated to: https://www.springframework.org/schema/beans/spring-beans-3.1.xsd ([https](https://www.springframework.org/schema/beans/spring-beans-3.1.xsd) result 200). * http://www.springframework.org/schema/beans/spring-beans.xsd with 3 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/data/elasticsearch/spring-elasticsearch.xsd with 20 occurrences migrated to: https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd ([https](https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd) result 200). * http://java.sun.com/xml/ns/javaee/beans_1_0.xsd with 1 occurrences migrated to: https://java.sun.com/xml/ns/javaee/beans_1_0.xsd ([https](https://java.sun.com/xml/ns/javaee/beans_1_0.xsd) result 302). # Ignored These URLs were intentionally ignored. * http://java.sun.com/xml/ns/javaee with 2 occurrences * http://maven.apache.org/POM/4.0.0 with 2 occurrences * http://www.springframework.org/schema/beans with 44 occurrences * http://www.springframework.org/schema/data/elasticsearch with 40 occurrences * http://www.w3.org/2001/XMLSchema-instance with 24 occurrences Original Pull Request: #258 --- pom.xml | 2 +- src/test/resources/META-INF/beans.xml | 2 +- .../complex-custom-method-repository-manual-wiring-test.xml | 4 ++-- src/test/resources/complex-custom-method-repository-test.xml | 4 ++-- src/test/resources/custom-method-repository-rest-test.xml | 4 ++-- src/test/resources/custom-method-repository-test.xml | 4 ++-- src/test/resources/double-id-repository-test.xml | 4 ++-- src/test/resources/dynamic-settings-test.xml | 4 ++-- src/test/resources/elasticsearch-rest-template-test.xml | 4 ++-- src/test/resources/elasticsearch-template-custom-mapper.xml | 2 +- src/test/resources/elasticsearch-template-test.xml | 2 +- src/test/resources/existing-index-repository-test.xml | 4 ++-- src/test/resources/immutable-repository-test.xml | 4 ++-- src/test/resources/infrastructure.xml | 4 ++-- src/test/resources/integer-id-repository-test.xml | 4 ++-- .../springframework/data/elasticsearch/config/namespace.xml | 4 ++-- src/test/resources/repository-non-document-entity.xml | 4 ++-- src/test/resources/repository-query-support.xml | 4 ++-- src/test/resources/repository-spring-data-geo-support.xml | 4 ++-- src/test/resources/repository-test-nested-object-books.xml | 4 ++-- src/test/resources/repository-test-nested-object.xml | 4 ++-- src/test/resources/simple-repository-test.xml | 4 ++-- src/test/resources/spel-repository-test.xml | 4 ++-- src/test/resources/synonym-test.xml | 4 ++-- 24 files changed, 44 insertions(+), 44 deletions(-) diff --git a/pom.xml b/pom.xml index 674f97d4..a9b73f86 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 diff --git a/src/test/resources/META-INF/beans.xml b/src/test/resources/META-INF/beans.xml index 4ca8195b..892e7887 100644 --- a/src/test/resources/META-INF/beans.xml +++ b/src/test/resources/META-INF/beans.xml @@ -1,5 +1,5 @@ + xsi:schemaLocation="http://java.sun.com/xml/ns/javaee https://java.sun.com/xml/ns/javaee/beans_1_0.xsd"> diff --git a/src/test/resources/complex-custom-method-repository-manual-wiring-test.xml b/src/test/resources/complex-custom-method-repository-manual-wiring-test.xml index 832fc41c..77ad6f8f 100644 --- a/src/test/resources/complex-custom-method-repository-manual-wiring-test.xml +++ b/src/test/resources/complex-custom-method-repository-manual-wiring-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/complex-custom-method-repository-test.xml b/src/test/resources/complex-custom-method-repository-test.xml index ea7b2452..bc3b3c6b 100644 --- a/src/test/resources/complex-custom-method-repository-test.xml +++ b/src/test/resources/complex-custom-method-repository-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/custom-method-repository-rest-test.xml b/src/test/resources/custom-method-repository-rest-test.xml index 1cda75c9..12c6aa72 100644 --- a/src/test/resources/custom-method-repository-rest-test.xml +++ b/src/test/resources/custom-method-repository-rest-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/custom-method-repository-test.xml b/src/test/resources/custom-method-repository-test.xml index 2a11d2b8..abf45baa 100644 --- a/src/test/resources/custom-method-repository-test.xml +++ b/src/test/resources/custom-method-repository-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/double-id-repository-test.xml b/src/test/resources/double-id-repository-test.xml index 83d3b8b9..6ab16961 100644 --- a/src/test/resources/double-id-repository-test.xml +++ b/src/test/resources/double-id-repository-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/dynamic-settings-test.xml b/src/test/resources/dynamic-settings-test.xml index 5c85c101..81ff36fa 100644 --- a/src/test/resources/dynamic-settings-test.xml +++ b/src/test/resources/dynamic-settings-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/elasticsearch-rest-template-test.xml b/src/test/resources/elasticsearch-rest-template-test.xml index 50059201..44cdb7ae 100644 --- a/src/test/resources/elasticsearch-rest-template-test.xml +++ b/src/test/resources/elasticsearch-rest-template-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/src/test/resources/elasticsearch-template-custom-mapper.xml b/src/test/resources/elasticsearch-template-custom-mapper.xml index 60c54eae..b3a4533b 100644 --- a/src/test/resources/elasticsearch-template-custom-mapper.xml +++ b/src/test/resources/elasticsearch-template-custom-mapper.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/elasticsearch-template-test.xml b/src/test/resources/elasticsearch-template-test.xml index 310b954f..d9785793 100644 --- a/src/test/resources/elasticsearch-template-test.xml +++ b/src/test/resources/elasticsearch-template-test.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/existing-index-repository-test.xml b/src/test/resources/existing-index-repository-test.xml index 7b32b5e0..55f9605c 100644 --- a/src/test/resources/existing-index-repository-test.xml +++ b/src/test/resources/existing-index-repository-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/immutable-repository-test.xml b/src/test/resources/immutable-repository-test.xml index 92fd24bf..60fd99dd 100644 --- a/src/test/resources/immutable-repository-test.xml +++ b/src/test/resources/immutable-repository-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/infrastructure.xml b/src/test/resources/infrastructure.xml index 23f18142..d53d9c4a 100644 --- a/src/test/resources/infrastructure.xml +++ b/src/test/resources/infrastructure.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/org/springframework/data/elasticsearch/config/namespace.xml b/src/test/resources/org/springframework/data/elasticsearch/config/namespace.xml index b6bc7c0b..940e2109 100644 --- a/src/test/resources/org/springframework/data/elasticsearch/config/namespace.xml +++ b/src/test/resources/org/springframework/data/elasticsearch/config/namespace.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/repository-query-support.xml b/src/test/resources/repository-query-support.xml index 0c31e42e..3f86b7af 100644 --- a/src/test/resources/repository-query-support.xml +++ b/src/test/resources/repository-query-support.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/repository-spring-data-geo-support.xml b/src/test/resources/repository-spring-data-geo-support.xml index d64a321e..e8698a6a 100644 --- a/src/test/resources/repository-spring-data-geo-support.xml +++ b/src/test/resources/repository-spring-data-geo-support.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/repository-test-nested-object-books.xml b/src/test/resources/repository-test-nested-object-books.xml index a37d0614..410b8646 100644 --- a/src/test/resources/repository-test-nested-object-books.xml +++ b/src/test/resources/repository-test-nested-object-books.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/repository-test-nested-object.xml b/src/test/resources/repository-test-nested-object.xml index 4aa618c4..1aa3e21d 100644 --- a/src/test/resources/repository-test-nested-object.xml +++ b/src/test/resources/repository-test-nested-object.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/simple-repository-test.xml b/src/test/resources/simple-repository-test.xml index a30338e3..0f63eeb5 100644 --- a/src/test/resources/simple-repository-test.xml +++ b/src/test/resources/simple-repository-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/spel-repository-test.xml b/src/test/resources/spel-repository-test.xml index 724f4400..bab41565 100644 --- a/src/test/resources/spel-repository-test.xml +++ b/src/test/resources/spel-repository-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> diff --git a/src/test/resources/synonym-test.xml b/src/test/resources/synonym-test.xml index bf4309b4..6e4105bb 100644 --- a/src/test/resources/synonym-test.xml +++ b/src/test/resources/synonym-test.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd">