Skip to content

Commit a79e06b

Browse files
committed
style: update Spring Boot version in comments
Relate to #1244 [skip ci]
1 parent dd2b7e2 commit a79e06b

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

infra/vagrant/provisioning/roles/mystamps-app/templates/application-prod.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ app.use-cdn: true
4343
server.servlet.session.cookie.secure: true
4444

4545
# Full list of autoconfiguration classes:
46-
# https://docs.spring.io/spring-boot/docs/2.2.x/reference/html/appendix-auto-configuration-classes.html
46+
# https://docs.spring.io/spring-boot/docs/2.3.x/reference/html/appendix-auto-configuration-classes.html
4747
# The difference between test profile is that we don't need
4848
# SpringApplicationAdminJmxAutoConfiguration and H2ConsoleAutoConfiguration
4949
spring.autoconfigure.exclude: \

pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<version>${slf4j.version}</version>
8080
</dependency>
8181

82-
<!-- https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter/pom.xml -->
82+
<!-- https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter/build.gradle -->
8383
<dependency>
8484
<groupId>org.springframework.boot</groupId>
8585
<artifactId>spring-boot-starter</artifactId>
@@ -91,13 +91,13 @@
9191
</exclusions>
9292
</dependency>
9393

94-
<!-- https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc/pom.xml -->
94+
<!-- https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc/build.gradle -->
9595
<dependency>
9696
<groupId>org.springframework.boot</groupId>
9797
<artifactId>spring-boot-starter-jdbc</artifactId>
9898
</dependency>
9999

100-
<!-- https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-jetty/pom.xml -->
100+
<!-- https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-jetty/build.gradle -->
101101
<dependency>
102102
<groupId>org.springframework.boot</groupId>
103103
<artifactId>spring-boot-starter-jetty</artifactId>
@@ -117,19 +117,19 @@
117117
</exclusions>
118118
</dependency>
119119

120-
<!-- https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-logging/pom.xml -->
120+
<!-- https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-logging/build.gradle -->
121121
<dependency>
122122
<groupId>org.springframework.boot</groupId>
123123
<artifactId>spring-boot-starter-logging</artifactId>
124124
</dependency>
125125

126-
<!-- https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-security/pom.xml -->
126+
<!-- https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-security/build.gradle -->
127127
<dependency>
128128
<groupId>org.springframework.boot</groupId>
129129
<artifactId>spring-boot-starter-security</artifactId>
130130
</dependency>
131131

132-
<!-- https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml -->
132+
<!-- https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-thymeleaf/build.gradle -->
133133
<dependency>
134134
<groupId>org.springframework.boot</groupId>
135135
<artifactId>spring-boot-starter-thymeleaf</artifactId>
@@ -141,7 +141,7 @@
141141
</exclusions>
142142
</dependency>
143143

144-
<!-- https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-web/pom.xml -->
144+
<!-- https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-web/build.gradle -->
145145
<dependency>
146146
<groupId>org.springframework.boot</groupId>
147147
<artifactId>spring-boot-starter-web</artifactId>
@@ -469,7 +469,7 @@
469469
<scope>test</scope>
470470
</dependency>
471471

472-
<!-- https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-test/pom.xml -->
472+
<!-- https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-test/build.gradle -->
473473
<dependency>
474474
<groupId>org.springframework.boot</groupId>
475475
<artifactId>spring-boot-starter-test</artifactId>
@@ -518,7 +518,7 @@
518518

519519
</dependencies>
520520

521-
<!-- https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/pom.xml -->
521+
<!-- https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle -->
522522
<parent>
523523
<groupId>org.springframework.boot</groupId>
524524
<artifactId>spring-boot-starter-parent</artifactId>
@@ -527,7 +527,7 @@
527527

528528
<!--
529529
All default versions from Spring Boot can be found there:
530-
https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-dependencies/pom.xml
530+
https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-dependencies/build.gradle
531531
-->
532532
<properties>
533533
<!--
@@ -592,7 +592,7 @@
592592

593593
<!--
594594
Redefine default value from spring-boot-starter-parent:
595-
https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/pom.xml
595+
https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle
596596
-->
597597
<java.version>1.8</java.version>
598598

@@ -682,7 +682,7 @@
682682

683683
<!--
684684
Define default value for spring-boot-starter-parent:
685-
https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/pom.xml
685+
https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle
686686
-->
687687
<start-class>ru.mystamps.web.support.spring.boot.ApplicationBootstrap</start-class>
688688

src/main/resources/application-postgres.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ logging.level.org.springframework.web.servlet.mvc.method.annotation.RequestMappi
3939
app.use-cdn: false
4040

4141
# Full list of autoconfiguration classes:
42-
# https://docs.spring.io/spring-boot/docs/2.2.x/reference/html/appendix-auto-configuration-classes.html
42+
# https://docs.spring.io/spring-boot/docs/2.3.x/reference/html/appendix-auto-configuration-classes.html
4343
# The difference between test profile is that we don't need H2ConsoleAutoConfiguration
4444
# @todo #1054 Extract list of exclusions to a common profile
4545
spring.autoconfigure.exclude: \

src/main/resources/application-test.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ logging.level.org.springframework.web.servlet.mvc.method.annotation.RequestMappi
4747
app.use-cdn: false
4848

4949
# Full list of autoconfiguration classes:
50-
# https://docs.spring.io/spring-boot/docs/2.2.x/reference/html/appendix-auto-configuration-classes.html
50+
# https://docs.spring.io/spring-boot/docs/2.3.x/reference/html/appendix-auto-configuration-classes.html
5151
spring.autoconfigure.exclude: \
5252
org.springframework.boot.autoconfigure.jms.activemq.ActiveMQAutoConfiguration \
5353
, org.springframework.boot.autoconfigure.aop.AopAutoConfiguration \

src/main/resources/application-travis.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ app.preview.dir: /tmp/preview
3838
app.use-cdn: false
3939

4040
# Full list of autoconfiguration classes:
41-
# https://docs.spring.io/spring-boot/docs/2.2.x/reference/html/appendix-auto-configuration-classes.html
41+
# https://docs.spring.io/spring-boot/docs/2.3.x/reference/html/appendix-auto-configuration-classes.html
4242
# The difference between test profile is that we don't need H2ConsoleAutoConfiguration
4343
spring.autoconfigure.exclude: \
4444
org.springframework.boot.autoconfigure.jms.activemq.ActiveMQAutoConfiguration \

src/main/resources/application.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spring.resources.add-mappings: false
2121
spring.cache.type: none
2222

2323
# See for details:
24-
# https://docs.spring.io/spring-boot/docs/2.2.x/api/org/springframework/boot/autoconfigure/web/servlet/MultipartProperties.html
24+
# https://docs.spring.io/spring-boot/docs/2.3.x/api/org/springframework/boot/autoconfigure/web/servlet/MultipartProperties.html
2525
spring.servlet.multipart.location: /tmp
2626
spring.servlet.multipart.max-request-size: 10MB
2727
spring.servlet.multipart.max-file-size: 5MB
@@ -41,7 +41,7 @@ server.compression.enabled: true
4141
server.compression.min-response-size: 512
4242

4343
# See for details:
44-
# https://docs.spring.io/spring-boot/docs/2.2.x/reference/html/spring-boot-features.html#boot-features-custom-log-configuration
44+
# https://docs.spring.io/spring-boot/docs/2.3.x/reference/html/spring-boot-features.html#boot-features-custom-log-configuration
4545
# https://logback.qos.ch/manual/layouts.html
4646
logging.pattern.level: [user:%-2X{userId}] %5p
4747

src/test/resources/logback-test.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<!--
55
See for details:
6-
https://docs.spring.io/spring-boot/docs/2.2.x/reference/html/howto.html#howto-configure-logback-for-logging
7-
https://github.com/spring-projects/spring-boot/blob/v2.2.13.RELEASE/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/logback/base.xml
6+
https://docs.spring.io/spring-boot/docs/2.3.x/reference/html/howto.html#howto-configure-logback-for-logging
7+
https://github.com/spring-projects/spring-boot/blob/v2.3.12.RELEASE/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/logback/base.xml
88
-->
99

1010
<!--

0 commit comments

Comments
 (0)