From f5604435789ce6f26c57d0d4c8bdec8c324e5888 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Tue, 19 Mar 2019 22:17:43 -0500 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 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 4 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 10 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 4 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/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). * http://www.springframework.org/schema/rabbit/spring-rabbit.xsd with 4 occurrences migrated to: https://www.springframework.org/schema/rabbit/spring-rabbit.xsd ([https](https://www.springframework.org/schema/rabbit/spring-rabbit.xsd) result 200). * http://www.springframework.org/schema/task/spring-task.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/task/spring-task.xsd ([https](https://www.springframework.org/schema/task/spring-task.xsd) result 200). * http://maven.apache.org/maven-v4_0_0.xsd with 3 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/j2ee/web-app_2_4.xsd with 1 occurrences migrated to: https://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd ([https](https://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd) result 302). # Ignored These URLs were intentionally ignored. * http://java.sun.com/xml/ns/j2ee with 2 occurrences * http://maven.apache.org/POM/4.0.0 with 14 occurrences * http://www.springframework.org/schema/beans with 20 occurrences * http://www.springframework.org/schema/context with 8 occurrences * http://www.springframework.org/schema/mvc with 2 occurrences * http://www.springframework.org/schema/p with 1 occurrences * http://www.springframework.org/schema/rabbit with 13 occurrences * http://www.springframework.org/schema/task with 2 occurrences * http://www.w3.org/2001/XMLSchema-instance with 18 occurrences --- helloworld/pom.xml | 2 +- helloworld/src/main/resources/rabbitConfiguration.xml | 4 ++-- log4j2/pom.xml | 2 +- pom.xml | 2 +- spring-rabbit-confirms-returns/pom.xml | 2 +- spring-rabbit-global-errorhandler/pom.xml | 2 +- spring-rabbit-json/pom.xml | 2 +- stocks/pom.xml | 2 +- stocks/src/main/resources/client-bootstrap-config.xml | 4 ++-- stocks/src/main/resources/client-handlers.xml | 2 +- stocks/src/main/resources/client-messaging.xml | 4 ++-- stocks/src/main/resources/server-bootstrap-config.xml | 6 +++--- stocks/src/main/resources/server-handlers.xml | 2 +- stocks/src/main/resources/server-jmx.xml | 4 ++-- stocks/src/main/resources/server-messaging.xml | 4 ++-- stocks/src/main/resources/server-services.xml | 2 +- stocks/src/main/resources/servlet-config.xml | 8 ++++---- stocks/src/main/webapp/WEB-INF/web.xml | 2 +- 18 files changed, 28 insertions(+), 28 deletions(-) diff --git a/helloworld/pom.xml b/helloworld/pom.xml index 6e1b3a7..3fa9c7f 100644 --- a/helloworld/pom.xml +++ b/helloworld/pom.xml @@ -1,6 +1,6 @@ 4.0.0 org.springframework.samples.spring diff --git a/helloworld/src/main/resources/rabbitConfiguration.xml b/helloworld/src/main/resources/rabbitConfiguration.xml index 4efd25a..3963c1d 100644 --- a/helloworld/src/main/resources/rabbitConfiguration.xml +++ b/helloworld/src/main/resources/rabbitConfiguration.xml @@ -1,8 +1,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/rabbit https://www.springframework.org/schema/rabbit/spring-rabbit.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/log4j2/pom.xml b/log4j2/pom.xml index c57f35f..503b8b7 100644 --- a/log4j2/pom.xml +++ b/log4j2/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.amqp.samples diff --git a/pom.xml b/pom.xml index d964cee..1eaaed0 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.amqp spring-amqp-samples diff --git a/spring-rabbit-confirms-returns/pom.xml b/spring-rabbit-confirms-returns/pom.xml index 8055817..8d97818 100644 --- a/spring-rabbit-confirms-returns/pom.xml +++ b/spring-rabbit-confirms-returns/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.amqp.samples diff --git a/spring-rabbit-global-errorhandler/pom.xml b/spring-rabbit-global-errorhandler/pom.xml index 304f627..99e9a3a 100644 --- a/spring-rabbit-global-errorhandler/pom.xml +++ b/spring-rabbit-global-errorhandler/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 com.example diff --git a/spring-rabbit-json/pom.xml b/spring-rabbit-json/pom.xml index c4efd1d..1c309fc 100644 --- a/spring-rabbit-json/pom.xml +++ b/spring-rabbit-json/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 com.example diff --git a/stocks/pom.xml b/stocks/pom.xml index c708e7f..b133ef7 100644 --- a/stocks/pom.xml +++ b/stocks/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.samples.spring diff --git a/stocks/src/main/resources/client-bootstrap-config.xml b/stocks/src/main/resources/client-bootstrap-config.xml index 45d0855..cdae245 100644 --- a/stocks/src/main/resources/client-bootstrap-config.xml +++ b/stocks/src/main/resources/client-bootstrap-config.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="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"> diff --git a/stocks/src/main/resources/client-handlers.xml b/stocks/src/main/resources/client-handlers.xml index 1e648d8..2d245dd 100644 --- a/stocks/src/main/resources/client-handlers.xml +++ b/stocks/src/main/resources/client-handlers.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/stocks/src/main/resources/client-messaging.xml b/stocks/src/main/resources/client-messaging.xml index 08de029..850e0c0 100644 --- a/stocks/src/main/resources/client-messaging.xml +++ b/stocks/src/main/resources/client-messaging.xml @@ -1,8 +1,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/rabbit https://www.springframework.org/schema/rabbit/spring-rabbit.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/stocks/src/main/resources/server-bootstrap-config.xml b/stocks/src/main/resources/server-bootstrap-config.xml index 2067179..05882d6 100644 --- a/stocks/src/main/resources/server-bootstrap-config.xml +++ b/stocks/src/main/resources/server-bootstrap-config.xml @@ -3,9 +3,9 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:task="http://www.springframework.org/schema/task" - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd - http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd - http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd + http://www.springframework.org/schema/task https://www.springframework.org/schema/task/spring-task.xsd + http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"> diff --git a/stocks/src/main/resources/server-handlers.xml b/stocks/src/main/resources/server-handlers.xml index c95752e..48ec36c 100644 --- a/stocks/src/main/resources/server-handlers.xml +++ b/stocks/src/main/resources/server-handlers.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/stocks/src/main/resources/server-jmx.xml b/stocks/src/main/resources/server-jmx.xml index 5e6f5bf..cbd2a5a 100644 --- a/stocks/src/main/resources/server-jmx.xml +++ b/stocks/src/main/resources/server-jmx.xml @@ -3,8 +3,8 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" - xsi:schemaLocation="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"> + xsi:schemaLocation="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"> diff --git a/stocks/src/main/resources/server-messaging.xml b/stocks/src/main/resources/server-messaging.xml index 3630bec..3243119 100644 --- a/stocks/src/main/resources/server-messaging.xml +++ b/stocks/src/main/resources/server-messaging.xml @@ -1,8 +1,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/rabbit https://www.springframework.org/schema/rabbit/spring-rabbit.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/stocks/src/main/resources/server-services.xml b/stocks/src/main/resources/server-services.xml index bf88bf6..2cb7ec9 100644 --- a/stocks/src/main/resources/server-services.xml +++ b/stocks/src/main/resources/server-services.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/stocks/src/main/resources/servlet-config.xml b/stocks/src/main/resources/servlet-config.xml index 6e115a1..ec51438 100644 --- a/stocks/src/main/resources/servlet-config.xml +++ b/stocks/src/main/resources/servlet-config.xml @@ -2,10 +2,10 @@ + xsi:schemaLocation="http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd + http://www.springframework.org/schema/rabbit https://www.springframework.org/schema/rabbit/spring-rabbit.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"> diff --git a/stocks/src/main/webapp/WEB-INF/web.xml b/stocks/src/main/webapp/WEB-INF/web.xml index fda42b6..57de231 100644 --- a/stocks/src/main/webapp/WEB-INF/web.xml +++ b/stocks/src/main/webapp/WEB-INF/web.xml @@ -2,7 +2,7 @@