Skip to content

Commit 231e469

Browse files
Spring OperatorRyan Baxter
Spring Operator
authored and
Ryan Baxter
committed
URL Cleanup (spring-cloud#376)
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://jboss.org/schema/arquillian/arquillian_1_0.xsd with 1 occurrences migrated to: https://jboss.org/schema/arquillian/arquillian_1_0.xsd ([https](https://jboss.org/schema/arquillian/arquillian_1_0.xsd) result 301). * [ ] http://repo.spring.io/libs-milestone-local with 2 occurrences migrated to: https://repo.spring.io/libs-milestone-local ([https](https://repo.spring.io/libs-milestone-local) result 302). * [ ] http://repo.spring.io/libs-snapshot-local with 2 occurrences migrated to: https://repo.spring.io/libs-snapshot-local ([https](https://repo.spring.io/libs-snapshot-local) result 302). * [ ] http://repo.spring.io/release with 1 occurrences migrated to: https://repo.spring.io/release ([https](https://repo.spring.io/release) result 302). # Ignored These URLs were intentionally ignored. * http://jboss.org/schema/arquillian with 2 occurrences * http://maven.apache.org/POM/4.0.0 with 42 occurrences * http://www.w3.org/2001/XMLSchema-instance with 22 occurrences
1 parent 7c88016 commit 231e469

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.settings.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@
2121
<repository>
2222
<id>spring-snapshots</id>
2323
<name>Spring Snapshots</name>
24-
<url>http://repo.spring.io/libs-snapshot-local</url>
24+
<url>https://repo.spring.io/libs-snapshot-local</url>
2525
<snapshots>
2626
<enabled>true</enabled>
2727
</snapshots>
2828
</repository>
2929
<repository>
3030
<id>spring-milestones</id>
3131
<name>Spring Milestones</name>
32-
<url>http://repo.spring.io/libs-milestone-local</url>
32+
<url>https://repo.spring.io/libs-milestone-local</url>
3333
<snapshots>
3434
<enabled>false</enabled>
3535
</snapshots>
3636
</repository>
3737
<repository>
3838
<id>spring-releases</id>
3939
<name>Spring Releases</name>
40-
<url>http://repo.spring.io/release</url>
40+
<url>https://repo.spring.io/release</url>
4141
<snapshots>
4242
<enabled>false</enabled>
4343
</snapshots>
@@ -47,15 +47,15 @@
4747
<pluginRepository>
4848
<id>spring-snapshots</id>
4949
<name>Spring Snapshots</name>
50-
<url>http://repo.spring.io/libs-snapshot-local</url>
50+
<url>https://repo.spring.io/libs-snapshot-local</url>
5151
<snapshots>
5252
<enabled>true</enabled>
5353
</snapshots>
5454
</pluginRepository>
5555
<pluginRepository>
5656
<id>spring-milestones</id>
5757
<name>Spring Milestones</name>
58-
<url>http://repo.spring.io/libs-milestone-local</url>
58+
<url>https://repo.spring.io/libs-milestone-local</url>
5959
<snapshots>
6060
<enabled>false</enabled>
6161
</snapshots>

spring-cloud-kubernetes-examples/kubernetes-hello-world-example/src/test/resources/arquillian.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xmlns="http://jboss.org/schema/arquillian"
44
xsi:schemaLocation="http://jboss.org/schema/arquillian
5-
http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
5+
https://jboss.org/schema/arquillian/arquillian_1_0.xsd">
66

77
<extension qualifier="openshift">
88
<property name="namespace.use.existing">it</property>

0 commit comments

Comments
 (0)