Skip to content

Commit 8059dce

Browse files
committed
Merge branch '1.3.x' into 1.4.x
2 parents baec3d6 + cf2b0bc commit 8059dce

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

README.adoc

+1-5
Original file line numberDiff line numberDiff line change
@@ -102,11 +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-
<<<<<<< HEAD
106-
http://maven.apache.org/run-maven/index.html[Maven v3.2.1 or above].
107-
=======
108-
https://maven.apache.org/run-maven/index.html[Maven v3.0.5 or above].
109-
>>>>>>> 1.3.x
105+
https://maven.apache.org/run-maven/index.html[Maven v3.2.1 or above].
110106

111107
NOTE: You may need to increase the amount of memory available to Maven by setting
112108
a `MAVEN_OPTS` environment variable with the value `-Xmx512m`. Remember

spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -612,20 +612,20 @@ For example, the following YAML document:
612612
----
613613
environments:
614614
dev:
615-
url: http://dev.example.com
615+
url: https://dev.example.com
616616
name: Developer Setup
617617
prod:
618-
url: http://another.example.com
618+
url: https://another.example.com
619619
name: My Cool App
620620
----
621621

622622
Would be transformed into these properties:
623623

624624
[source,properties,indent=0]
625625
----
626-
environments.dev.url=http://dev.example.com
626+
environments.dev.url=https://dev.example.com
627627
environments.dev.name=Developer Setup
628-
environments.prod.url=http://another.example.com
628+
environments.prod.url=https://another.example.com
629629
environments.prod.name=My Cool App
630630
----
631631

0 commit comments

Comments
 (0)