Skip to content

Commit ba4671f

Browse files
committed
Merge branch '1.5.x' into 2.0.x
2 parents 507b00d + e036bc4 commit ba4671f

File tree

92 files changed

+247
-247
lines changed

Some content is hidden

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

92 files changed

+247
-247
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/]

CONTRIBUTING.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ added after the original pull request but before a merge.
6666
* A few unit tests would help a lot as well -- someone has to do it.
6767
* If no-one else is using your branch, please rebase it against the current master (or
6868
other target branch in the main project).
69-
* When writing a commit message please follow http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
69+
* When writing a commit message please follow https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
7070
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
7171
message (where `XXXX` is the issue number).
7272

@@ -75,15 +75,15 @@ added after the original pull request but before a merge.
7575
== Working with the Code
7676
If you don't have an IDE preference we would recommend that you use
7777
https://spring.io/tools/sts[Spring Tools Suite] or
78-
http://eclipse.org[Eclipse] when working with the code. We use the
79-
http://eclipse.org/m2e/[M2Eclipse] eclipse plugin for maven support. Other IDEs and tools
78+
https://eclipse.org[Eclipse] when working with the code. We use the
79+
https://eclipse.org/m2e/[M2Eclipse] eclipse plugin for maven support. Other IDEs and tools
8080
should also work without issue.
8181

8282

8383

8484
=== Building from Source
85-
Spring Boot source can be build from the command line using
86-
http://maven.apache.org/run-maven/index.html[Apache Maven] on JDK 1.8 or above.
85+
Spring Boot source can be built from the command line using
86+
https://maven.apache.org/run-maven/index.html[Apache Maven] on JDK 1.8 or above.
8787
We include '`Maven Wrapper`' scripts (`./mvnw` or `mvnw.bat`) that you can run rather
8888
than needing to install Maven locally.
8989

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

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

171171
==== Manual Installation with M2Eclipse
172172
If you prefer to install Eclipse yourself you should use the
173-
http://eclipse.org/m2e/[M2Eclipse] eclipse plugin. If you don't already have m2eclipse
173+
https://eclipse.org/m2e/[M2Eclipse] eclipse plugin. If you don't already have m2eclipse
174174
installed it is available from the "Eclipse marketplace".
175175

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

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/cloudfoundry/servlet/CloudFoundrySecurityServiceTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ public class CloudFoundrySecurityServiceTests {
5252
@Rule
5353
public ExpectedException thrown = ExpectedException.none();
5454

55-
private static final String CLOUD_CONTROLLER = "http://my-cloud-controller.com";
55+
private static final String CLOUD_CONTROLLER = "https://my-cloud-controller.com";
5656

5757
private static final String CLOUD_CONTROLLER_PERMISSIONS = CLOUD_CONTROLLER
5858
+ "/v2/apps/my-app-id/permissions";
5959

60-
private static final String UAA_URL = "http://my-uaa.com";
60+
private static final String UAA_URL = "https://my-uaa.com";
6161

6262
private CloudFoundrySecurityService securityService;
6363

@@ -151,7 +151,7 @@ public void getAccessLevelWhenCloudControllerIsNotReachableThrowsException() {
151151
@Test
152152
public void fetchTokenKeysWhenSuccessfulShouldReturnListOfKeysFromUAA() {
153153
this.server.expect(requestTo(CLOUD_CONTROLLER + "/info"))
154-
.andRespond(withSuccess("{\"token_endpoint\":\"http://my-uaa.com\"}",
154+
.andRespond(withSuccess("{\"token_endpoint\":\"https://my-uaa.com\"}",
155155
MediaType.APPLICATION_JSON));
156156
String tokenKeyValue = "-----BEGIN PUBLIC KEY-----\n"
157157
+ "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0m59l2u9iDnMbrXHfqkO\n"

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/cloudfoundry/servlet/TokenValidatorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public void validateTokenWhenExpiredShouldThrowException() throws Exception {
181181
@Test
182182
public void validateTokenWhenIssuerIsNotValidShouldThrowException() throws Exception {
183183
given(this.securityService.fetchTokenKeys()).willReturn(VALID_KEYS);
184-
given(this.securityService.getUaaUrl()).willReturn("http://other-uaa.com");
184+
given(this.securityService.getUaaUrl()).willReturn("https://other-uaa.com");
185185
String header = "{ \"alg\": \"RS256\", \"kid\": \"valid-key\", \"typ\": \"JWT\", \"scope\": [\"actuator.read\"]}";
186186
String claims = "{ \"exp\": 2147483647, \"iss\": \"http://localhost:8080/uaa/oauth/token\"}";
187187
this.thrown

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/AtomikosJtaConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
import org.springframework.util.StringUtils;
4747

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

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/BitronixJtaConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2018 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@
4444
import org.springframework.util.StringUtils;
4545

4646
/**
47-
* JTA Configuration for <A href="http://docs.codehaus.org/display/BTM/Home">Bitronix</A>.
47+
* JTA Configuration for <A href="https://github.com/bitronix/btm">Bitronix</A>.
4848
*
4949
* @author Josh Long
5050
* @author Phillip Webb

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/NarayanaJtaConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2018 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -49,7 +49,7 @@
4949
import org.springframework.util.StringUtils;
5050

5151
/**
52-
* JTA Configuration for <a href="http://narayana.io/">Narayana</a>.
52+
* JTA Configuration for <a href="https://github.com/jbosstm/narayana">Narayana</a>.
5353
*
5454
* @author Gytis Trikleris
5555
* @author Kazuki Shimizu

spring-boot-project/spring-boot-autoconfigure/src/test/resources/templates/layout.html

Lines changed: 1 addition & 1 deletion
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>

spring-boot-project/spring-boot-autoconfigure/src/test/resources/templates/view.html

Lines changed: 1 addition & 1 deletion
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>

spring-boot-project/spring-boot-cli/src/it/resources/jar-command/bad.groovy

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)