Skip to content

Commit e401d02

Browse files
spring-operatorwilkinsona
authored andcommitted
Use HTTPS for external links wherever possible
See spring-projectsgh-16316
1 parent a732aca commit e401d02

File tree

106 files changed

+440
-440
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+440
-440
lines changed

Diff for: CONTRIBUTING.adoc

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ something, or simply want to hack on the code this document should help you get
77

88
== Using GitHub issues
99
We use GitHub issues to track bugs and enhancements. If you have a general usage question
10-
please ask on http://stackoverflow.com[Stack Overflow]. The Spring Boot team and the
11-
broader community monitor the http://stackoverflow.com/tags/spring-boot[`spring-boot`]
10+
please ask on https://stackoverflow.com[Stack Overflow]. The Spring Boot team and the
11+
broader community monitor the https://stackoverflow.com/tags/spring-boot[`spring-boot`]
1212
tag.
1313

1414
If you are reporting a bug, please help to speed up problem diagnosis by providing as much
@@ -36,7 +36,7 @@ added after the original pull request but before a merge.
3636
the '`Importing into eclipse`' instructions below you should get project specific
3737
formatting automatically. You can also import formatter settings using the
3838
`eclipse-code-formatter.xml` file from the `eclipse` folder. If using IntelliJ IDEA, you
39-
can use the http://plugins.jetbrains.com/plugin/6546[Eclipse Code Formatter Plugin]
39+
can use the https://plugins.jetbrains.com/plugin/6546[Eclipse Code Formatter Plugin]
4040
to import the same file.
4141
* Make sure all new `.java` files to have a simple Javadoc class comment with at least an
4242
`@author` tag identifying you, and preferably at least a paragraph on what the class is
@@ -49,24 +49,24 @@ added after the original pull request but before a merge.
4949
* A few unit tests would help a lot as well -- someone has to do it.
5050
* If no-one else is using your branch, please rebase it against the current master (or
5151
other target branch in the main project).
52-
* When writing a commit message please follow http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
52+
* When writing a commit message please follow https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
5353
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
5454
message (where `XXXX` is the issue number).
5555

5656

5757

5858
== Working with the code
5959
If you don't have an IDE preference we would recommend that you use
60-
http://www.springsource.com/developer/sts[Spring Tools Suite] or
61-
http://eclipse.org[Eclipse] when working with the code. We use the
62-
http://eclipse.org/m2e/[M2Eclipse] eclipse plugin for maven support. Other IDEs and tools
60+
https://www.springsource.com/developer/sts[Spring Tools Suite] or
61+
https://eclipse.org[Eclipse] when working with the code. We use the
62+
https://eclipse.org/m2e/[M2Eclipse] eclipse plugin for maven support. Other IDEs and tools
6363
should also work without issue.
6464

6565

6666

6767
=== Building from source
6868
To build the source you will need to install
69-
http://maven.apache.org/run-maven/index.html[Apache Maven] v3.2.3 or above and JDK 1.8.
69+
https://maven.apache.org/run-maven/index.html[Apache Maven] v3.2.3 or above and JDK 1.8.
7070

7171

7272

@@ -146,7 +146,7 @@ Spring Boot includes a `.setup` files which can be used with the Eclipse Install
146146
provision a new environment. To use the installer:
147147

148148
* Download and run the latest Eclipse Installer from
149-
http://www.eclipse.org/downloads/[eclipse.org/downloads/].
149+
https://www.eclipse.org/downloads/[eclipse.org/downloads/].
150150
* Switch to "Advanced Mode" using the drop down menu on the right.
151151
* Select "`Eclipse IDE for Java Developers`" under "`Eclipse.org`" as the product to
152152
install and click "`next`".
@@ -168,7 +168,7 @@ easier to navigate.
168168

169169
==== Manual installation with m2eclipse
170170
If you prefer to install Eclipse yourself we recommend that you use the
171-
http://eclipse.org/m2e/[M2Eclipse] eclipse plugin. If you don't already have m2eclipse
171+
https://eclipse.org/m2e/[M2Eclipse] eclipse plugin. If you don't already have m2eclipse
172172
installed it is available from the "Eclipse marketplace".
173173

174174
Spring Boot includes project specific source formatting settings, in order to have these

Diff for: README.adoc

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Spring Boot image:https://build.spring.io/plugins/servlet/buildStatusImage/BOOT-PUB["Build Status", link="https://build.spring.io/browse/BOOT-PUB"] image:https://badges.gitter.im/Join Chat.svg["Chat",link="https://gitter.im/spring-projects/spring-boot?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"]
2-
:docs: http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference
2+
:docs: https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference
33

44
Spring Boot makes it easy to create Spring-powered, production-grade applications and
55
services with absolute minimum fuss. It takes an opinionated view of the Spring platform
@@ -62,10 +62,10 @@ Having trouble with Spring Boot? We'd like to help!
6262
{docs}/htmlsingle/#howto[How-to's] -- they provide solutions to the most common
6363
questions.
6464
* Learn the Spring basics -- Spring Boot builds on many other Spring projects, check
65-
the http://spring.io[spring.io] web-site for a wealth of reference documentation. If
66-
you are just starting out with Spring, try one of the http://spring.io/guides[guides].
67-
* Ask a questions - we monitor http://stackoverflow.com[stackoverflow.com] for questions
68-
tagged with http://stackoverflow.com/tags/spring-boot[`spring-boot`].
65+
the https://spring.io[spring.io] web-site for a wealth of reference documentation. If
66+
you are just starting out with Spring, try one of the https://spring.io/guides[guides].
67+
* Ask a questions - we monitor https://stackoverflow.com[stackoverflow.com] for questions
68+
tagged with https://stackoverflow.com/tags/spring-boot[`spring-boot`].
6969
* Report bugs with Spring Boot at https://github.com/spring-projects/spring-boot/issues[github.com/spring-projects/spring-boot/issues].
7070

7171

@@ -91,7 +91,7 @@ requests. If you want to raise an issue, please follow the recommendations below
9191

9292
== Building from Source
9393
You don't need to build from source to use Spring Boot (binaries in
94-
http://repo.spring.io[repo.spring.io]), but if you want to try out the latest and
94+
https://repo.spring.io[repo.spring.io]), but if you want to try out the latest and
9595
greatest, Spring Boot can be easily built with the
9696
https://github.com/takari/maven-wrapper[maven wrapper]. You also need JDK 1.8 (although
9797
Boot applications can run on Java 1.6).
@@ -102,7 +102,7 @@ Boot applications can run on Java 1.6).
102102
----
103103

104104
If you want to build with the regular `mvn` command, you will need
105-
http://maven.apache.org/run-maven/index.html[Maven v3.0.5 or above].
105+
https://maven.apache.org/run-maven/index.html[Maven v3.0.5 or above].
106106

107107
NOTE: You may need to increase the amount of memory available to Maven by setting
108108
a `MAVEN_OPTS` environment variable with the value `-Xmx512m`. Remember
@@ -215,16 +215,16 @@ be built with maven and run by invoking `java -jar target/<sample>.jar`.
215215

216216

217217
== Guides
218-
The http://spring.io/[spring.io] site contains several guides that show how to use Spring
218+
The https://spring.io/[spring.io] site contains several guides that show how to use Spring
219219
Boot step-by-step:
220220

221-
* http://spring.io/guides/gs/spring-boot/[Building an Application with Spring Boot] is a
221+
* https://spring.io/guides/gs/spring-boot/[Building an Application with Spring Boot] is a
222222
very basic guide that shows you how to create a simple application, run it and add some
223223
management services.
224-
* http://spring.io/guides/gs/actuator-service/[Building a RESTful Web Service with Spring
224+
* https://spring.io/guides/gs/actuator-service/[Building a RESTful Web Service with Spring
225225
Boot Actuator] is a guide to creating a REST web service and also shows how the server
226226
can be configured.
227-
* http://spring.io/guides/gs/convert-jar-to-war/[Converting a Spring Boot JAR Application
227+
* https://spring.io/guides/gs/convert-jar-to-war/[Converting a Spring Boot JAR Application
228228
to a WAR] shows you how to run applications in a web server as a WAR file.
229229

230230

Diff for: spring-boot-actuator/README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ manage your application when it's pushed to production. You can choose to manage
55
monitor your application using HTTP endpoints, with JMX or even by remote shell (SSH or
66
Telnet). Auditing, health and metrics gathering can be automatically applied to your
77
application. The
8-
http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#production-ready[user guide]
8+
https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#production-ready[user guide]
99
covers the features in more detail.
1010

1111
== Enabling the Actuator

Diff for: spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/CrshAutoConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
* context.
106106
* <p>
107107
* Additional shell commands can be implemented using the guide and documentation at
108-
* <a href="http://www.crashub.org">crashub.org</a>. By default Boot will search for
108+
* <a href="https://www.crashub.org">crashub.org</a>. By default Boot will search for
109109
* commands using the following classpath scanning pattern {@code classpath*:/commands/**}
110110
* . To add different locations or override the default use
111111
* {@code shell.command_path_patterns} in your application configuration.

Diff for: spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/JolokiaAutoConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* <p>
5454
* Additional configuration parameters for Jolokia can be provided by specifying
5555
* {@code jolokia.config.*} properties. See the
56-
* <a href="http://jolokia.org">http://jolokia.org</a> web site for more information on
56+
* <a href="https://jolokia.org">https://jolokia.org</a> web site for more information on
5757
* supported configuration parameters.
5858
*
5959
* @author Christian Dupuis

Diff for: spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/rich/RichGauge.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* The value of the average will depend on whether a weight ('alpha') is set for the
2525
* gauge. If it is unset, the average will contain a simple arithmetic mean. If a weight
2626
* is set, an exponential moving average will be calculated as defined in this
27-
* <a href="http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc431.htm">NIST
27+
* <a href="https://www.itl.nist.gov/div898/handbook/pmc/section4/pmc431.htm">NIST
2828
* document</a>.
2929
*
3030
* @author Luke Taylor

Diff for: spring-boot-actuator/src/test/java/org/springframework/boot/actuate/autoconfigure/MetricFilterAutoConfigurationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ protected void doFilterInternal(HttpServletRequest request,
390390
throws ServletException, IOException {
391391
// send redirect before filter chain is executed, like Spring Security sending
392392
// us back to a login page
393-
response.sendRedirect("http://example.com");
393+
response.sendRedirect("https://example.com");
394394
}
395395

396396
}

Diff for: spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/AtomikosJtaConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
import org.springframework.util.StringUtils;
4646

4747
/**
48-
* JTA Configuration for <A href="http://www.atomikos.com/">Atomikos</a>.
48+
* JTA Configuration for <A href="https://www.atomikos.com/">Atomikos</a>.
4949
*
5050
* @author Josh Long
5151
* @author Phillip Webb

Diff for: spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/BitronixJtaConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
import org.springframework.util.StringUtils;
4343

4444
/**
45-
* JTA Configuration for <A href="http://docs.codehaus.org/display/BTM/Home">Bitronix</A>.
45+
* JTA Configuration for <A href="https://docs.codehaus.org/display/BTM/Home">Bitronix</A>.
4646
*
4747
* @author Josh Long
4848
* @author Phillip Webb

Diff for: spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/oauth2/resource/ResourceServerPropertiesTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class ResourceServerPropertiesTests {
3636
@Test
3737
@SuppressWarnings("unchecked")
3838
public void json() throws Exception {
39-
this.properties.getJwt().setKeyUri("http://example.com/token_key");
39+
this.properties.getJwt().setKeyUri("https://example.com/token_key");
4040
ObjectMapper mapper = new ObjectMapper();
4141
String json = mapper.writeValueAsString(this.properties);
4242
Map<String, Object> value = mapper.readValue(json, Map.class);
@@ -46,7 +46,7 @@ public void json() throws Exception {
4646

4747
@Test
4848
public void tokenKeyDerived() throws Exception {
49-
this.properties.setUserInfoUri("http://example.com/userinfo");
49+
this.properties.setUserInfoUri("https://example.com/userinfo");
5050
assertNotNull("Wrong properties: " + this.properties,
5151
this.properties.getJwt().getKeyUri());
5252
}

Diff for: spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/oauth2/resource/ResourceServerTokenServicesConfigurationTests.java

+9-9
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void defaultIsRemoteTokenServices() {
9696
@Test
9797
public void useRemoteTokenServices() {
9898
EnvironmentTestUtils.addEnvironment(this.environment,
99-
"security.oauth2.resource.tokenInfoUri:http://example.com",
99+
"security.oauth2.resource.tokenInfoUri:https://example.com",
100100
"security.oauth2.resource.clientId=acme");
101101
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
102102
.environment(this.environment).web(false).run();
@@ -107,7 +107,7 @@ public void useRemoteTokenServices() {
107107
@Test
108108
public void switchToUserInfo() {
109109
EnvironmentTestUtils.addEnvironment(this.environment,
110-
"security.oauth2.resource.userInfoUri:http://example.com");
110+
"security.oauth2.resource.userInfoUri:https://example.com");
111111
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
112112
.environment(this.environment).web(false).run();
113113
UserInfoTokenServices services = this.context
@@ -118,7 +118,7 @@ public void switchToUserInfo() {
118118
@Test
119119
public void userInfoWithAuthorities() {
120120
EnvironmentTestUtils.addEnvironment(this.environment,
121-
"security.oauth2.resource.userInfoUri:http://example.com");
121+
"security.oauth2.resource.userInfoUri:https://example.com");
122122
this.context = new SpringApplicationBuilder(AuthoritiesConfiguration.class)
123123
.environment(this.environment).web(false).run();
124124
UserInfoTokenServices services = this.context
@@ -132,7 +132,7 @@ public void userInfoWithAuthorities() {
132132
public void userInfoWithClient() {
133133
EnvironmentTestUtils.addEnvironment(this.environment,
134134
"security.oauth2.client.client-id=acme",
135-
"security.oauth2.resource.userInfoUri:http://example.com",
135+
"security.oauth2.resource.userInfoUri:https://example.com",
136136
"server.port=-1", "debug=true");
137137
this.context = new SpringApplicationBuilder(ResourceNoClientConfiguration.class)
138138
.environment(this.environment).web(true).run();
@@ -144,8 +144,8 @@ public void userInfoWithClient() {
144144
@Test
145145
public void preferUserInfo() {
146146
EnvironmentTestUtils.addEnvironment(this.environment,
147-
"security.oauth2.resource.userInfoUri:http://example.com",
148-
"security.oauth2.resource.tokenInfoUri:http://example.com",
147+
"security.oauth2.resource.userInfoUri:https://example.com",
148+
"security.oauth2.resource.tokenInfoUri:https://example.com",
149149
"security.oauth2.resource.preferTokenInfo:false");
150150
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
151151
.environment(this.environment).web(false).run();
@@ -157,8 +157,8 @@ public void preferUserInfo() {
157157
@Test
158158
public void userInfoWithCustomizer() {
159159
EnvironmentTestUtils.addEnvironment(this.environment,
160-
"security.oauth2.resource.userInfoUri:http://example.com",
161-
"security.oauth2.resource.tokenInfoUri:http://example.com",
160+
"security.oauth2.resource.userInfoUri:https://example.com",
161+
"security.oauth2.resource.tokenInfoUri:https://example.com",
162162
"security.oauth2.resource.preferTokenInfo:false");
163163
this.context = new SpringApplicationBuilder(ResourceConfiguration.class,
164164
Customizer.class).environment(this.environment).web(false).run();
@@ -190,7 +190,7 @@ public void asymmetricJwt() {
190190
@Test
191191
public void springSocialUserInfo() {
192192
EnvironmentTestUtils.addEnvironment(this.environment,
193-
"security.oauth2.resource.userInfoUri:http://example.com",
193+
"security.oauth2.resource.userInfoUri:https://example.com",
194194
"spring.social.facebook.app-id=foo",
195195
"spring.social.facebook.app-secret=bar");
196196
this.context = new SpringApplicationBuilder(SocialResourceConfiguration.class)

Diff for: spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/oauth2/resource/UserInfoTokenServicesRefreshTokenTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
@SpringApplicationConfiguration(classes = Application.class)
6464
@RunWith(SpringJUnit4ClassRunner.class)
6565
@WebIntegrationTest({ "server.port=0",
66-
"security.oauth2.resource.userInfoUri:http://example.com",
66+
"security.oauth2.resource.userInfoUri:https://example.com",
6767
"security.oauth2.client.clientId=foo" })
6868
@DirtiesContext
6969
public class UserInfoTokenServicesRefreshTokenTests {

Diff for: spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/oauth2/resource/UserInfoTokenServicesTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class UserInfoTokenServicesTests {
5151
public ExpectedException expected = ExpectedException.none();
5252

5353
private UserInfoTokenServices services = new UserInfoTokenServices(
54-
"http://example.com", "foo");
54+
"https://example.com", "foo");
5555

5656
private BaseOAuth2ProtectedResourceDetails resource = new BaseOAuth2ProtectedResourceDetails();
5757

Diff for: spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/oauth2/sso/BasicOAuth2SsoConfigurationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
@WebAppConfiguration
5252
@TestPropertySource(properties = { "debug=true", "security.oauth2.client.clientId=client",
5353
"security.oauth2.client.clientSecret=secret",
54-
"security.oauth2.client.userAuthorizationUri=http://example.com/oauth/authorize",
55-
"security.oauth2.client.accessTokenUri=http://example.com/oauth/token",
54+
"security.oauth2.client.userAuthorizationUri=https://example.com/oauth/authorize",
55+
"security.oauth2.client.accessTokenUri=https://example.com/oauth/token",
5656
"security.oauth2.resource.jwt.keyValue=SSSSHHH" })
5757
public class BasicOAuth2SsoConfigurationTests {
5858

Diff for: spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/oauth2/sso/CustomOAuth2SsoConfigurationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
@WebAppConfiguration
5858
@TestPropertySource(properties = { "security.oauth2.client.clientId=client",
5959
"security.oauth2.client.clientSecret=secret",
60-
"security.oauth2.client.authorizationUri=http://example.com/oauth/authorize",
61-
"security.oauth2.client.tokenUri=http://example.com/oauth/token",
60+
"security.oauth2.client.authorizationUri=https://example.com/oauth/authorize",
61+
"security.oauth2.client.tokenUri=https://example.com/oauth/token",
6262
"security.oauth2.resource.jwt.keyValue=SSSSHHH" })
6363
public class CustomOAuth2SsoConfigurationTests {
6464

Diff for: spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/oauth2/sso/CustomOAuth2SsoWithAuthenticationEntryPointConfigurationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
@WebAppConfiguration
6060
@TestPropertySource(properties = { "security.oauth2.client.clientId=client",
6161
"security.oauth2.client.clientSecret=secret",
62-
"security.oauth2.client.authorizationUri=http://example.com/oauth/authorize",
63-
"security.oauth2.client.tokenUri=http://example.com/oauth/token",
62+
"security.oauth2.client.authorizationUri=https://example.com/oauth/authorize",
63+
"security.oauth2.client.tokenUri=https://example.com/oauth/token",
6464
"security.oauth2.resource.jwt.keyValue=SSSSHHH" })
6565
public class CustomOAuth2SsoWithAuthenticationEntryPointConfigurationTests {
6666

Diff for: spring-boot-autoconfigure/src/test/resources/templates/layout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
2+
<html xmlns:th="https://www.thymeleaf.org" xmlns:layout="https://github.com/ultraq/thymeleaf-layout-dialect">
33
<head>
44
<title layout:fragment="title">Layout</title>
55
</head>

Diff for: spring-boot-autoconfigure/src/test/resources/templates/view.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<html xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout" layout:decorator="layout">
1+
<html xmlns:th="https://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout" layout:decorator="layout">
22
<head>
33
<title layout:fragment="title">Content</title>
44
</head>

Diff for: spring-boot-cli/src/it/resources/jar-command/bad.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@GrabResolver(name='clojars.org', root='http://clojars.org/repo')
1+
@GrabResolver(name='clojars.org', root='https://clojars.org/repo')
22
@Grab('redis.embedded:embedded-redis:0.2')
33

44
@Component

Diff for: spring-boot-cli/src/main/homebrew/springboot.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require 'formula'
22

33
class Springboot < Formula
4-
homepage 'http://projects.spring.io/spring-boot/'
4+
homepage 'https://projects.spring.io/spring-boot/'
55
url 'https://repo.spring.io/${repo}/org/springframework/boot/spring-boot-cli/${project.version}/spring-boot-cli-${project.version}-bin.tar.gz'
66
version '${project.version}'
77
sha256 '${checksum}'

Diff for: spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/RepositoryConfigurationFactory.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242
public final class RepositoryConfigurationFactory {
4343

4444
private static final RepositoryConfiguration MAVEN_CENTRAL = new RepositoryConfiguration(
45-
"central", URI.create("http://repo1.maven.org/maven2/"), false);
45+
"central", URI.create("https://repo1.maven.org/maven2/"), false);
4646

4747
private static final RepositoryConfiguration SPRING_MILESTONE = new RepositoryConfiguration(
48-
"spring-milestone", URI.create("http://repo.spring.io/milestone"), false);
48+
"spring-milestone", URI.create("https://repo.spring.io/milestone"), false);
4949

5050
private static final RepositoryConfiguration SPRING_SNAPSHOT = new RepositoryConfiguration(
51-
"spring-snapshot", URI.create("http://repo.spring.io/snapshot"), true);
51+
"spring-snapshot", URI.create("https://repo.spring.io/snapshot"), true);
5252

5353
private RepositoryConfigurationFactory() {
5454
}

Diff for: spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/grape/AetherGrapeEngine.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
/**
4646
* A {@link GrapeEngine} implementation that uses
47-
* <a href="http://eclipse.org/aether">Aether</a>, the dependency resolution system used
47+
* <a href="https://eclipse.org/aether">Aether</a>, the dependency resolution system used
4848
* by Maven.
4949
*
5050
* @author Andy Wilkinson

0 commit comments

Comments
 (0)