Skip to content

Commit 7176450

Browse files
spring-operatorericbottard
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 Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * [ ] http://beanvalidation.org/ with 1 occurrences migrated to: https://beanvalidation.org/ ([https](https://beanvalidation.org/) result 200). * [ ] http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/ with 1 occurrences migrated to: https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/ ([https](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/) result 200). * [ ] http://github.com/spring-projects/spring-shell with 1 occurrences migrated to: https://github.com/spring-projects/spring-shell ([https](https://github.com/spring-projects/spring-shell) result 200). * [ ] http://start.spring.io with 2 occurrences migrated to: https://start.spring.io ([https](https://start.spring.io) result 200). * [ ] http://www.java.com/en/download/help/error_hotspot.xml with 1 occurrences migrated to: https://www.java.com/en/download/help/error_hotspot.xml ([https](https://www.java.com/en/download/help/error_hotspot.xml) result 200). * [ ] http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * [ ] http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301).
1 parent 2ccab80 commit 7176450

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CODE_OF_CONDUCT.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ appropriate to the circumstances. Maintainers are obligated to maintain confiden
4040
with regard to the reporter of an incident.
4141

4242
This Code of Conduct is adapted from the
43-
http://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at
44-
http://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]
43+
https://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at
44+
https://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]

spring-shell-docs/src/main/asciidoc/using-spring-shell.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Starting with version 2, Spring Shell has been rewritten from the ground up with
1111
enhancements in mind, one of which is easy integration with Spring Boot, although it is
1212
not a strong requirement.
1313
For the purpose of this tutorial, let's create a simple Boot application, for example
14-
using http://start.spring.io. This minimal application only depends on `spring-boot-starter`
14+
using https://start.spring.io. This minimal application only depends on `spring-boot-starter`
1515
and configures the `spring-boot-maven-plugin`, generating an executable über-jar:
1616

1717
[source, xml]
@@ -45,7 +45,7 @@ configuring only the necessary beans as needed:
4545
====
4646
Given that Spring Shell will kick in and start the REPL by virtue of this dependency being present,
4747
you'll need to either build skipping tests (`-DskipTests`) throughout this tutorial or remove the sample integration test
48-
that was generated by http://start.spring.io. If you don't do so, the integration test will create
48+
that was generated by https://start.spring.io. If you don't do so, the integration test will create
4949
the Spring `ApplicationContext` and, depending on your build tool, will stay stuck in the eval loop or crash with a NPE.
5050
====
5151

@@ -86,7 +86,7 @@ java -jar target/demo-0.0.1-SNAPSHOT.jar
8686
----
8787

8888
You'll be greeted by the following screen (the banner comes from Spring Boot, and can be customized
89-
http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-banner[as usual]):
89+
https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-banner[as usual]):
9090

9191
[source]
9292
----
@@ -451,7 +451,7 @@ TBD
451451
[[validating-command-arguments]]
452452
=== Validating Command Arguments
453453

454-
Spring Shell integrates with the http://beanvalidation.org/[Bean Validation API] to support
454+
Spring Shell integrates with the https://beanvalidation.org/[Bean Validation API] to support
455455
automatic and self documenting constraints on command parameters.
456456

457457
Annotations found on command parameters as well as annotations at the method level will be
@@ -814,7 +814,7 @@ public class MyClear implements Clear.Command {
814814
.Please Consider Contributing your Changes
815815
====
816816
If you feel like your implementation of a standard command could be valuable to the community,
817-
please consider opening a pull-request at http://github.com/spring-projects/spring-shell.
817+
please consider opening a pull-request at https://github.com/spring-projects/spring-shell.
818818
819819
Alternatively, before making any changes on your own, you can open an issue with the project. Feedback is
820820
always welcome!

spring-shell-test-samples/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ xcuserdata/
115115
*.war
116116
*.ear
117117

118-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
118+
# virtual machine crash logs, see https://www.java.com/en/download/help/error_hotspot.xml
119119
hs_err_pid*
120120

121121
## Eclipse

0 commit comments

Comments
 (0)