Skip to content

Commit b74a688

Browse files
spring-operatorartembilan
authored andcommitted
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/configuration_1_2.dtd (404) with 1 occurrences migrated to: https://www.puppycrawl.com/dtds/configuration_1_3.dtd ([https](https://www.puppycrawl.com/dtds/configuration_1_2.dtd) result 404). * [ ] http://www.puppycrawl.com/dtds/suppressions_1_1.dtd (404) with 1 occurrences migrated to: https://www.puppycrawl.com/dtds/suppressions_1_2.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://www.springframework.org/schema/beans/spring-beans.xsd with 34 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/rabbit/spring-rabbit.xsd with 32 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://www.springframework.org/schema/util/spring-util.xsd with 5 occurrences migrated to: https://www.springframework.org/schema/util/spring-util.xsd ([https](https://www.springframework.org/schema/util/spring-util.xsd) result 200). # Ignored These URLs were intentionally ignored. * http://www.springframework.org/schema/beans with 77 occurrences * http://www.springframework.org/schema/context with 2 occurrences * http://www.springframework.org/schema/rabbit with 71 occurrences * http://www.springframework.org/schema/task with 2 occurrences * http://www.springframework.org/schema/util with 10 occurrences * http://www.w3.org/2001/XMLSchema-instance with 34 occurrences * Upgrade to SF-4.3.23.BUILD-SNAPSHOT for HTTPS resolution for XSDs
1 parent 33797aa commit b74a688

File tree

37 files changed

+79
-77
lines changed

37 files changed

+79
-77
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ subprojects { subproject ->
104104
rabbitmqHttpClientVersion = '1.1.1.RELEASE'
105105
slf4jVersion = "1.7.25"
106106

107-
springVersion = project.hasProperty('springVersion') ? project.springVersion : '4.3.22.RELEASE'
107+
springVersion = project.hasProperty('springVersion') ? project.springVersion : '4.3.23.BUILD-SNAPSHOT'
108108

109109
springRetryVersion = '1.2.2.RELEASE'
110110
}

spring-amqp/src/test/resources/org/springframework/amqp/support/converter/Jackson2JsonMessageConverterTests-context.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<beans xmlns="http://www.springframework.org/schema/beans"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
4+
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd">
55

66
<bean id="jsonConverterWithDefaultType" class="org.springframework.amqp.support.converter.Jackson2JsonMessageConverter">
77
<property name="classMapper">

spring-amqp/src/test/resources/org/springframework/amqp/support/converter/JsonMessageConverterTests-context.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<beans xmlns="http://www.springframework.org/schema/beans"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
4+
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd">
55

66
<bean id="jsonConverterWithDefaultType" class="org.springframework.amqp.support.converter.JsonMessageConverter">
77
<property name="classMapper">

spring-rabbit-test/src/test/resources/org/springframework/amqp/rabbit/repeatable/annotation-driven-no-rabbit-admin-repeatable-config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:rabbit="http://www.springframework.org/schema/rabbit"
55
xsi:schemaLocation="http://www.springframework.org/schema/beans
6-
http://www.springframework.org/schema/beans/spring-beans.xsd
6+
https://www.springframework.org/schema/beans/spring-beans.xsd
77
http://www.springframework.org/schema/rabbit
8-
http://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
8+
https://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
99

1010
<rabbit:annotation-driven/>
1111

spring-rabbit/src/test/resources/org/springframework/amqp/rabbit/annotation/annotation-driven-custom-container-factory.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:rabbit="http://www.springframework.org/schema/rabbit"
55
xsi:schemaLocation="http://www.springframework.org/schema/beans
6-
http://www.springframework.org/schema/beans/spring-beans.xsd
6+
https://www.springframework.org/schema/beans/spring-beans.xsd
77
http://www.springframework.org/schema/rabbit
8-
http://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
8+
https://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
99

1010
<rabbit:annotation-driven container-factory="simpleFactory"/>
1111

spring-rabbit/src/test/resources/org/springframework/amqp/rabbit/annotation/annotation-driven-custom-handler-method-factory.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:rabbit="http://www.springframework.org/schema/rabbit"
55
xsi:schemaLocation="http://www.springframework.org/schema/beans
6-
http://www.springframework.org/schema/beans/spring-beans.xsd
6+
https://www.springframework.org/schema/beans/spring-beans.xsd
77
http://www.springframework.org/schema/rabbit
8-
http://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
8+
https://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
99

1010
<rabbit:annotation-driven handler-method-factory="customMessageHandlerMethodFactory"/>
1111

spring-rabbit/src/test/resources/org/springframework/amqp/rabbit/annotation/annotation-driven-custom-registry.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:rabbit="http://www.springframework.org/schema/rabbit"
55
xsi:schemaLocation="http://www.springframework.org/schema/beans
6-
http://www.springframework.org/schema/beans/spring-beans.xsd
6+
https://www.springframework.org/schema/beans/spring-beans.xsd
77
http://www.springframework.org/schema/rabbit
8-
http://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
8+
https://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
99

1010

1111
<rabbit:annotation-driven registry="customRegistry"/>

spring-rabbit/src/test/resources/org/springframework/amqp/rabbit/annotation/annotation-driven-default-container-factory.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:rabbit="http://www.springframework.org/schema/rabbit"
55
xsi:schemaLocation="http://www.springframework.org/schema/beans
6-
http://www.springframework.org/schema/beans/spring-beans.xsd
6+
https://www.springframework.org/schema/beans/spring-beans.xsd
77
http://www.springframework.org/schema/rabbit
8-
http://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
8+
https://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
99

1010
<rabbit:annotation-driven/>
1111

spring-rabbit/src/test/resources/org/springframework/amqp/rabbit/annotation/annotation-driven-full-config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:rabbit="http://www.springframework.org/schema/rabbit"
55
xsi:schemaLocation="http://www.springframework.org/schema/beans
6-
http://www.springframework.org/schema/beans/spring-beans.xsd
6+
https://www.springframework.org/schema/beans/spring-beans.xsd
77
http://www.springframework.org/schema/rabbit
8-
http://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
8+
https://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
99

1010
<rabbit:annotation-driven/>
1111

spring-rabbit/src/test/resources/org/springframework/amqp/rabbit/annotation/annotation-driven-full-configurable-config.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
xmlns:rabbit="http://www.springframework.org/schema/rabbit"
55
xmlns:context="http://www.springframework.org/schema/context"
66
xsi:schemaLocation="http://www.springframework.org/schema/beans
7-
http://www.springframework.org/schema/beans/spring-beans.xsd
7+
https://www.springframework.org/schema/beans/spring-beans.xsd
88
http://www.springframework.org/schema/rabbit
9-
http://www.springframework.org/schema/rabbit/spring-rabbit.xsd
9+
https://www.springframework.org/schema/rabbit/spring-rabbit.xsd
1010
http://www.springframework.org/schema/context
11-
http://www.springframework.org/schema/context/spring-context.xsd">
11+
https://www.springframework.org/schema/context/spring-context.xsd">
1212

1313
<rabbit:annotation-driven/>
1414

0 commit comments

Comments
 (0)