Skip to content

Commit ba42c17

Browse files
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://compose.docker.io/ (UnknownHostException) with 1 occurrences migrated to: https://compose.docker.io/ ([https](https://compose.docker.io/) result UnknownHostException). * [ ] http://www.puppycrawl.com/dtds/suppressions_1_1.dtd (404) with 1 occurrences migrated to: https://www.puppycrawl.com/dtds/suppressions_1_1.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://EditorConfig.org with 1 occurrences migrated to: https://EditorConfig.org ([https](https://EditorConfig.org) result 200). * [ ] http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html with 2 occurrences migrated to: https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html ([https](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) result 200). * [ ] http://plugins.jetbrains.com/plugin/6546 with 2 occurrences migrated to: https://plugins.jetbrains.com/plugin/6546 ([https](https://plugins.jetbrains.com/plugin/6546) result 301). * [ ] http://eclipse.org with 1 occurrences migrated to: https://eclipse.org ([https](https://eclipse.org) result 302). * [ ] http://eclipse.org/m2e/ with 2 occurrences migrated to: https://eclipse.org/m2e/ ([https](https://eclipse.org/m2e/) result 302). * [ ] http://www.springsource.com/developer/sts with 1 occurrences migrated to: https://www.springsource.com/developer/sts ([https](https://www.springsource.com/developer/sts) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 4 occurrences
1 parent 2ceca83 commit ba42c17

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
1+
# EditorConfig is awesome: https://EditorConfig.org
22

33
# top-most EditorConfig file
44
root = true

.github/CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ added after the original pull request but before a merge.
2828
you can import formatter settings using the
2929
`eclipse-code-formatter.xml` file from the
3030
[Spring Cloud Build](https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-dependencies-parent/eclipse-code-formatter.xml) project. If using IntelliJ, you can use the
31-
[Eclipse Code Formatter Plugin](http://plugins.jetbrains.com/plugin/6546) to import the same file.
31+
[Eclipse Code Formatter Plugin](https://plugins.jetbrains.com/plugin/6546) to import the same file.
3232
* Make sure all new `.java` files to have a simple Javadoc class comment with at least an
3333
`@author` tag identifying you, and preferably at least a paragraph on what the class is
3434
for.
@@ -40,6 +40,6 @@ added after the original pull request but before a merge.
4040
* A few unit tests would help a lot as well -- someone has to do it.
4141
* If no-one else is using your branch, please rebase it against the current master (or
4242
other target branch in the main project).
43-
* When writing a commit message please follow [these conventions](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html),
43+
* When writing a commit message please follow [these conventions](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html),
4444
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
4545
message (where XXXX is the issue number).

README.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ credentials and you already have those.
8181

8282
The projects that require middleware generally include a
8383
`docker-compose.yml`, so consider using
84-
http://compose.docker.io/[Docker Compose] to run the middeware servers
84+
https://compose.docker.io/[Docker Compose] to run the middeware servers
8585
in Docker containers. See the README in the
8686
https://github.com/spring-cloud-samples/scripts[scripts demo
8787
repository] for specific instructions about the common cases of mongo,
@@ -103,13 +103,13 @@ a modified file in the correct place. Just commit it and push the change.
103103

104104
=== Working with the code
105105
If you don't have an IDE preference we would recommend that you use
106-
http://www.springsource.com/developer/sts[Spring Tools Suite] or
107-
http://eclipse.org[Eclipse] when working with the code. We use the
108-
http://eclipse.org/m2e/[m2eclipse] eclipse plugin for maven support. Other IDEs and tools
106+
https://www.springsource.com/developer/sts[Spring Tools Suite] or
107+
https://eclipse.org[Eclipse] when working with the code. We use the
108+
https://eclipse.org/m2e/[m2eclipse] eclipse plugin for maven support. Other IDEs and tools
109109
should also work without issue as long as they use Maven 3.3.3 or better.
110110

111111
==== Importing into eclipse with m2eclipse
112-
We recommend the http://eclipse.org/m2e/[m2eclipse] eclipse plugin when working with
112+
We recommend the https://eclipse.org/m2e/[m2eclipse] eclipse plugin when working with
113113
eclipse. If you don't already have m2eclipse installed it is available from the "eclipse
114114
marketplace".
115115

@@ -167,7 +167,7 @@ added after the original pull request but before a merge.
167167
`eclipse-code-formatter.xml` file from the
168168
https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-dependencies-parent/eclipse-code-formatter.xml[Spring
169169
Cloud Build] project. If using IntelliJ, you can use the
170-
http://plugins.jetbrains.com/plugin/6546[Eclipse Code Formatter
170+
https://plugins.jetbrains.com/plugin/6546[Eclipse Code Formatter
171171
Plugin] to import the same file.
172172
* Make sure all new `.java` files to have a simple Javadoc class comment with at least an
173173
`@author` tag identifying you, and preferably at least a paragraph on what the class is
@@ -180,7 +180,7 @@ added after the original pull request but before a merge.
180180
* A few unit tests would help a lot as well -- someone has to do it.
181181
* If no-one else is using your branch, please rebase it against the current master (or
182182
other target branch in the main project).
183-
* When writing a commit message please follow http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
183+
* When writing a commit message please follow https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
184184
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
185185
message (where XXXX is the issue number).
186186

@@ -251,7 +251,7 @@ If you need to suppress some rules (e.g. line length needs to be longer), then i
251251
<?xml version="1.0"?>
252252
<!DOCTYPE suppressions PUBLIC
253253
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
254-
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
254+
"https://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
255255
<suppressions>
256256
<suppress files=".*ConfigServerApplication\.java" checks="HideUtilityClassConstructor"/>
257257
<suppress files=".*ConfigClientWatch\.java" checks="LineLengthCheck"/>

0 commit comments

Comments
 (0)