Skip to content

Commit 620d3ea

Browse files
spring-operatorgregturn
authored andcommitted
SWS-1057 - 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). These URLs were fixed successfully. * http://spring.io migrated to: https://spring.io ([https](https://spring.io) result 200). * http://spring.io/projects/spring-ws migrated to: https://spring.io/projects/spring-ws ([https](https://spring.io/projects/spring-ws) result 200). * http://www.apache.org/licenses/LICENSE-2.0 migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). * http://repo.spring.io migrated to: https://repo.spring.io ([https](https://repo.spring.io) result 302). These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 * http://maven.apache.org/xsd/maven-4.0.0.xsd * http://www.w3.org/2001/XMLSchema-instance
1 parent 78cdade commit 620d3ea

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

mvnw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# "License"); you may not use this file except in compliance
99
# with the License. You may obtain a copy of the License at
1010
#
11-
# http://www.apache.org/licenses/LICENSE-2.0
11+
# https://www.apache.org/licenses/LICENSE-2.0
1212
#
1313
# Unless required by applicable law or agreed to in writing,
1414
# software distributed under the License is distributed on an

mvnw.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@REM "License"); you may not use this file except in compliance
88
@REM with the License. You may obtain a copy of the License at
99
@REM
10-
@REM http://www.apache.org/licenses/LICENSE-2.0
10+
@REM https://www.apache.org/licenses/LICENSE-2.0
1111
@REM
1212
@REM Unless required by applicable law or agreed to in writing,
1313
@REM software distributed under the License is distributed on an

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010

1111
<name>Spring Web Services</name>
12-
<url>http://spring.io/projects/spring-ws</url>
12+
<url>https://spring.io/projects/spring-ws</url>
1313
<description>Spring-based Web Services support</description>
1414

1515
<developers>
@@ -44,21 +44,21 @@
4444

4545
<organization>
4646
<name>Pivotal Software</name>
47-
<url>http://spring.io</url>
47+
<url>https://spring.io</url>
4848
</organization>
4949

5050
<licenses>
5151
<license>
5252
<name>Apache License, Version 2.0</name>
53-
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
53+
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
5454
<comments>
5555
Copyright 2011 the original author or authors.
5656

5757
Licensed under the Apache License, Version 2.0 (the "License");
5858
you may not use this file except in compliance with the License.
5959
You may obtain a copy of the License at
6060

61-
http://www.apache.org/licenses/LICENSE-2.0
61+
https://www.apache.org/licenses/LICENSE-2.0
6262

6363
Unless required by applicable law or agreed to in writing, software
6464
distributed under the License is distributed on an "AS IS" BASIS,
@@ -443,7 +443,7 @@
443443
<archives>*:*:*:*@zip zip.name:spring-ws, zip.displayname:Spring Web Services, zip.deployed:false</archives>
444444
</deployProperties>
445445
<publisher>
446-
<contextUrl>http://repo.spring.io</contextUrl>
446+
<contextUrl>https://repo.spring.io</contextUrl>
447447
<username>{{USERNAME}}</username>
448448
<password>{{PASSWORD}}</password>
449449
<repoKey>libs-milestone-local</repoKey>
@@ -478,7 +478,7 @@
478478
<archives>*:*:*:*@zip zip.name:spring-ws, zip.displayname:Spring Web Services, zip.deployed:false</archives>
479479
</deployProperties>
480480
<publisher>
481-
<contextUrl>http://repo.spring.io</contextUrl>
481+
<contextUrl>https://repo.spring.io</contextUrl>
482482
<username>{{USERNAME}}</username>
483483
<password>{{PASSWORD}}</password>
484484
<repoKey>libs-release-local</repoKey>

0 commit comments

Comments
 (0)