From 6d51ebf294e5d8940c9b34793a3cda1759038788 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Wed, 20 Mar 2019 08:10:59 -0700 Subject: [PATCH] #473 - 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). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://mybatis.org/dtd/mybatis-3-config.dtd (301) with 1 occurrences could not be migrated: ([https](https://mybatis.org/dtd/mybatis-3-config.dtd) result SSLHandshakeException). * http://mybatis.org/dtd/mybatis-3-mapper.dtd (301) with 2 occurrences could not be migrated: ([https](https://mybatis.org/dtd/mybatis-3-mapper.dtd) result SSLHandshakeException). # 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 70 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://maven.apache.org/maven-v4_0_0.xsd with 6 occurrences migrated to: https://maven.apache.org/maven-v4_0_0.xsd ([https](https://maven.apache.org/maven-v4_0_0.xsd) result 301). * http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd with 1 occurrences migrated to: https://java.sun.com/xml/ns/persistence/persistence_2_0.xsd ([https](https://java.sun.com/xml/ns/persistence/persistence_2_0.xsd) result 302). # Ignored These URLs were intentionally ignored. * http://java.sun.com/xml/ns/persistence with 2 occurrences * http://maven.apache.org/POM/4.0.0 with 152 occurrences * http://www.w3.org/2001/XMLSchema-instance with 77 occurrences Original pull request: #472 --- bom/pom.xml | 2 +- cassandra/example/pom.xml | 2 +- cassandra/java8/pom.xml | 2 +- cassandra/kotlin/pom.xml | 2 +- cassandra/pom.xml | 2 +- cassandra/reactive/pom.xml | 2 +- cassandra/util/pom.xml | 2 +- couchbase/example/pom.xml | 2 +- couchbase/pom.xml | 2 +- couchbase/reactive/pom.xml | 2 +- couchbase/util/pom.xml | 2 +- elasticsearch/example/pom.xml | 2 +- elasticsearch/pom.xml | 2 +- jdbc/basics/pom.xml | 2 +- jdbc/jooq/pom.xml | 2 +- jdbc/mybatis/pom.xml | 2 +- .../main/resources/example/springdata/jdbc/mybatis/LegoSet.xml | 2 +- .../main/resources/example/springdata/jdbc/mybatis/Model.xml | 2 +- jdbc/mybatis/src/main/resources/mybatis-config.xml | 2 +- jdbc/pom.xml | 2 +- jpa/deferred/pom.xml | 2 +- jpa/eclipselink/pom.xml | 2 +- jpa/example/pom.xml | 2 +- jpa/example/src/test/resources/META-INF/persistence.xml | 2 +- jpa/interceptors/pom.xml | 2 +- jpa/java8/pom.xml | 2 +- jpa/jpa21/pom.xml | 2 +- jpa/multiple-datasources/pom.xml | 2 +- jpa/pom.xml | 2 +- jpa/query-by-example/pom.xml | 2 +- jpa/security/pom.xml | 2 +- jpa/showcase/pom.xml | 2 +- jpa/vavr/pom.xml | 2 +- ldap/example/pom.xml | 2 +- ldap/pom.xml | 2 +- map/pom.xml | 2 +- mongodb/aggregation/pom.xml | 2 +- mongodb/change-streams/pom.xml | 2 +- mongodb/example/pom.xml | 2 +- mongodb/fluent-api/pom.xml | 2 +- mongodb/geo-json/pom.xml | 2 +- mongodb/gridfs/pom.xml | 2 +- mongodb/java8/pom.xml | 2 +- mongodb/kotlin/pom.xml | 2 +- mongodb/pom.xml | 2 +- mongodb/query-by-example/pom.xml | 2 +- mongodb/reactive/pom.xml | 2 +- mongodb/schema-validation/pom.xml | 2 +- mongodb/security/pom.xml | 2 +- mongodb/text-search/pom.xml | 2 +- mongodb/transactions/pom.xml | 2 +- mongodb/util/pom.xml | 2 +- multi-store/pom.xml | 2 +- neo4j/example/pom.xml | 2 +- neo4j/pom.xml | 2 +- pom.xml | 2 +- r2dbc/example/pom.xml | 2 +- r2dbc/pom.xml | 2 +- redis/cluster/pom.xml | 2 +- redis/example/pom.xml | 2 +- redis/pom.xml | 2 +- redis/reactive/pom.xml | 2 +- redis/repositories/pom.xml | 2 +- redis/sentinel/pom.xml | 2 +- redis/util/pom.xml | 2 +- rest/headers/pom.xml | 2 +- rest/multi-store/pom.xml | 2 +- rest/pom.xml | 2 +- rest/projections/pom.xml | 2 +- rest/security/pom.xml | 2 +- rest/starbucks/pom.xml | 2 +- rest/uri-customization/pom.xml | 2 +- solr/example/pom.xml | 2 +- solr/managed-schema/pom.xml | 2 +- solr/pom.xml | 2 +- solr/util/pom.xml | 2 +- web/example/pom.xml | 2 +- web/pom.xml | 2 +- web/projection/pom.xml | 2 +- web/querydsl/pom.xml | 2 +- 80 files changed, 80 insertions(+), 80 deletions(-) diff --git a/bom/pom.xml b/bom/pom.xml index 90d6f015..dd07269b 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -1,5 +1,5 @@ + 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.examples diff --git a/cassandra/example/pom.xml b/cassandra/example/pom.xml index b33bddb0..1df48342 100644 --- a/cassandra/example/pom.xml +++ b/cassandra/example/pom.xml @@ -1,5 +1,5 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 spring-data-cassandra-example diff --git a/cassandra/java8/pom.xml b/cassandra/java8/pom.xml index f6bf0ff2..20fb0e32 100644 --- a/cassandra/java8/pom.xml +++ b/cassandra/java8/pom.xml @@ -1,5 +1,5 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 diff --git a/cassandra/kotlin/pom.xml b/cassandra/kotlin/pom.xml index 06358cfb..5cc0a9ec 100644 --- a/cassandra/kotlin/pom.xml +++ b/cassandra/kotlin/pom.xml @@ -1,5 +1,5 @@ + 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/cassandra/pom.xml b/cassandra/pom.xml index 51080cae..3ffbf9e4 100644 --- a/cassandra/pom.xml +++ b/cassandra/pom.xml @@ -1,5 +1,5 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 spring-data-cassandra-examples diff --git a/cassandra/reactive/pom.xml b/cassandra/reactive/pom.xml index 60e9be67..206f8755 100644 --- a/cassandra/reactive/pom.xml +++ b/cassandra/reactive/pom.xml @@ -1,5 +1,5 @@ + 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/cassandra/util/pom.xml b/cassandra/util/pom.xml index de2461d2..6ba8b472 100644 --- a/cassandra/util/pom.xml +++ b/cassandra/util/pom.xml @@ -1,5 +1,5 @@ + 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/couchbase/example/pom.xml b/couchbase/example/pom.xml index ba38ed41..7161616b 100644 --- a/couchbase/example/pom.xml +++ b/couchbase/example/pom.xml @@ -1,5 +1,5 @@ + 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/couchbase/pom.xml b/couchbase/pom.xml index af9490ed..cf8a01a5 100644 --- a/couchbase/pom.xml +++ b/couchbase/pom.xml @@ -1,5 +1,5 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 spring-data-couchbase-examples diff --git a/couchbase/reactive/pom.xml b/couchbase/reactive/pom.xml index 19a2fd67..1c488f0d 100644 --- a/couchbase/reactive/pom.xml +++ b/couchbase/reactive/pom.xml @@ -1,5 +1,5 @@ + 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/couchbase/util/pom.xml b/couchbase/util/pom.xml index d93d75e9..e410edd1 100644 --- a/couchbase/util/pom.xml +++ b/couchbase/util/pom.xml @@ -1,5 +1,5 @@ + 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/elasticsearch/example/pom.xml b/elasticsearch/example/pom.xml index d9c907b5..e4e3c457 100644 --- a/elasticsearch/example/pom.xml +++ b/elasticsearch/example/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 org.springframework diff --git a/elasticsearch/pom.xml b/elasticsearch/pom.xml index a452079a..2709a282 100644 --- a/elasticsearch/pom.xml +++ b/elasticsearch/pom.xml @@ -1,5 +1,5 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 spring-data-elasticsearch-examples diff --git a/jdbc/basics/pom.xml b/jdbc/basics/pom.xml index 68779d8f..ec70bbce 100644 --- a/jdbc/basics/pom.xml +++ b/jdbc/basics/pom.xml @@ -1,5 +1,5 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 spring-data-jdbc-basics diff --git a/jdbc/jooq/pom.xml b/jdbc/jooq/pom.xml index e55191db..d9dc5da1 100644 --- a/jdbc/jooq/pom.xml +++ b/jdbc/jooq/pom.xml @@ -1,5 +1,5 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 spring-data-jdbc-jooq diff --git a/jdbc/mybatis/pom.xml b/jdbc/mybatis/pom.xml index f890ecdc..0540f0e4 100644 --- a/jdbc/mybatis/pom.xml +++ b/jdbc/mybatis/pom.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 spring-data-jdbc-mybatis diff --git a/jdbc/mybatis/src/main/resources/example/springdata/jdbc/mybatis/LegoSet.xml b/jdbc/mybatis/src/main/resources/example/springdata/jdbc/mybatis/LegoSet.xml index 670a7b47..3ac897ea 100644 --- a/jdbc/mybatis/src/main/resources/example/springdata/jdbc/mybatis/LegoSet.xml +++ b/jdbc/mybatis/src/main/resources/example/springdata/jdbc/mybatis/LegoSet.xml @@ -1,5 +1,5 @@ - +