Skip to content

Commit 08405c5

Browse files
committed
build(pom.xml): update Spring Boot to 1.5.16.RELEASE
This also updates Spring Framework to 4.3.19.RELEASE and Spring Security to 4.2.8.RELEASE Changelogs: - https://spring.io/blog/2018/09/11/spring-boot-1-5-16 - https://spring.io/blog/2018/09/11/spring-security-5-0-8-and-4-2-8-released - https://spring.io/blog/2018/09/07/spring-framework-5-1-rc3-5-0-9-and-4-3-19-available-now No functional changes.
1 parent aeb70e4 commit 08405c5

File tree

3 files changed

+34
-34
lines changed

3 files changed

+34
-34
lines changed

pom.xml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<version>${slf4j.version}</version>
6060
</dependency>
6161

62-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter/pom.xml -->
62+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter/pom.xml -->
6363
<dependency>
6464
<groupId>org.springframework.boot</groupId>
6565
<artifactId>spring-boot-starter</artifactId>
@@ -71,7 +71,7 @@
7171
</exclusions>
7272
</dependency>
7373

74-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-jdbc/pom.xml -->
74+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-jdbc/pom.xml -->
7575
<dependency>
7676
<groupId>org.springframework.boot</groupId>
7777
<artifactId>spring-boot-starter-jdbc</artifactId>
@@ -83,7 +83,7 @@
8383
</exclusions>
8484
</dependency>
8585

86-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-jetty/pom.xml -->
86+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-jetty/pom.xml -->
8787
<dependency>
8888
<groupId>org.springframework.boot</groupId>
8989
<artifactId>spring-boot-starter-jetty</artifactId>
@@ -103,25 +103,25 @@
103103
</exclusions>
104104
</dependency>
105105

106-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-logging/pom.xml -->
106+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-logging/pom.xml -->
107107
<dependency>
108108
<groupId>org.springframework.boot</groupId>
109109
<artifactId>spring-boot-starter-logging</artifactId>
110110
</dependency>
111111

112-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-mail/pom.xml -->
112+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-mail/pom.xml -->
113113
<dependency>
114114
<groupId>org.springframework.boot</groupId>
115115
<artifactId>spring-boot-starter-mail</artifactId>
116116
</dependency>
117117

118-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-security/pom.xml -->
118+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-security/pom.xml -->
119119
<dependency>
120120
<groupId>org.springframework.boot</groupId>
121121
<artifactId>spring-boot-starter-security</artifactId>
122122
</dependency>
123123

124-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml -->
124+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml -->
125125
<dependency>
126126
<groupId>org.springframework.boot</groupId>
127127
<artifactId>spring-boot-starter-thymeleaf</artifactId>
@@ -133,7 +133,7 @@
133133
</exclusions>
134134
</dependency>
135135

136-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-web/pom.xml -->
136+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-web/pom.xml -->
137137
<dependency>
138138
<groupId>org.springframework.boot</groupId>
139139
<artifactId>spring-boot-starter-web</artifactId>
@@ -425,7 +425,7 @@
425425

426426
<!--
427427
For ConfigFileApplicationContextInitializer class.
428-
https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-test/pom.xml
428+
https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-test/pom.xml
429429
-->
430430
<dependency>
431431
<groupId>org.springframework.boot</groupId>
@@ -457,10 +457,10 @@
457457
</dependencies>
458458

459459
<parent>
460-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-parent/pom.xml -->
460+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-parent/pom.xml -->
461461
<groupId>org.springframework.boot</groupId>
462462
<artifactId>spring-boot-starter-parent</artifactId>
463-
<version>1.5.15.RELEASE</version>
463+
<version>1.5.16.RELEASE</version>
464464
</parent>
465465

466466
<properties>
@@ -476,10 +476,10 @@
476476
<codenarc.plugin.version>0.22-1</codenarc.plugin.version>
477477
<codenarc.version>0.27.0</codenarc.version>
478478

479-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
479+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
480480
<commons-dbcp.version>1.4</commons-dbcp.version>
481481

482-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
482+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
483483
<commons-pool.version>1.5.4</commons-pool.version>
484484

485485
<commons.lang.version>3.8</commons.lang.version>
@@ -498,56 +498,56 @@
498498
<findbugs.plugin.version>3.0.5</findbugs.plugin.version>
499499
<gmavenplus.plugin.version>1.5</gmavenplus.plugin.version>
500500

501-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
501+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
502502
<groovy.version>2.0.8</groovy.version>
503503

504-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
504+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
505505
<h2.version>1.4.197</h2.version>
506506

507-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
507+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
508508
<hamcrest.version>1.3</hamcrest.version>
509509

510-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
510+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
511511
<hibernate-validator.version>5.3.6.Final</hibernate-validator.version>
512512

513-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
513+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
514514
<htmlunit.version>2.21</htmlunit.version>
515515

516516
<jacoco.plugin.version>0.8.2</jacoco.plugin.version>
517517
<jasmine.plugin.version>2.2</jasmine.plugin.version>
518518

519-
<!-- Redefine default value from spring-boot-starter-parent (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-parent/pom.xml) -->
519+
<!-- Redefine default value from spring-boot-starter-parent (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-parent/pom.xml) -->
520520
<java.version>1.8</java.version>
521521

522522
<javadoc.plugin.version>3.0.1</javadoc.plugin.version>
523523

524-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
524+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
525525
<javax-mail.version>1.5.4</javax-mail.version>
526526

527527
<javax.validation.version>1.1.0.Final</javax.validation.version>
528528

529-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
529+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
530530
<jetty.version>9.2.18.v20160721</jetty.version>
531531

532532
<!-- Don't forget to update version in the Url class -->
533533
<jquery.version>1.9.1</jquery.version>
534534

535535
<jsoup.version>1.11.3</jsoup.version>
536536

537-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
537+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
538538
<junit.version>4.12</junit.version>
539539

540540
<license.plugin.version>3.0</license.plugin.version>
541541

542-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
542+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
543543
<liquibase.version>3.5.5</liquibase.version>
544544

545-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
545+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
546546
<lombok.version>1.18.2</lombok.version>
547547

548548
<minify.plugin.version>1.7.6</minify.plugin.version>
549549

550-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
550+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
551551
<mysql.version>5.1.46</mysql.version>
552552

553553
<native2ascii.plugin.version>2.0.1</native2ascii.plugin.version>
@@ -561,36 +561,36 @@
561561
<!-- Don't forget to update version in the Url class and in the src/main/webapp/WEB-INF/views/series/add.html -->
562562
<selectizejs.version>0.12.4</selectizejs.version>
563563

564-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
564+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
565565
<selenium.version>2.53.1</selenium.version>
566566

567-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
567+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
568568
<servlet-api.version>3.1.0</servlet-api.version>
569569

570570
<skipUnitTests>false</skipUnitTests>
571571

572-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
572+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
573573
<slf4j.version>1.7.25</slf4j.version>
574574

575575
<sortpom.plugin.version>2.5.0</sortpom.plugin.version>
576576

577-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
577+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
578578
<spock.version>1.0-groovy-2.0</spock.version>
579579

580-
<!-- Define default value for spring-boot-starter-parent (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-starters/spring-boot-starter-parent/pom.xml) -->
580+
<!-- Define default value for spring-boot-starter-parent (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-starters/spring-boot-starter-parent/pom.xml) -->
581581
<start-class>ru.mystamps.web.support.spring.boot.ApplicationBootstrap</start-class>
582582

583583
<subethasmtp.version>3.1.7</subethasmtp.version>
584584
<surefire.plugin.version>2.22.0</surefire.plugin.version>
585585
<testng.version>6.8.8</testng.version>
586586
<thumbnailator.version>0.4.8</thumbnailator.version>
587587

588-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
588+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
589589
<thymeleaf-extras-springsecurity4.version>3.0.2.RELEASE</thymeleaf-extras-springsecurity4.version>
590590

591591
<thymeleaf.togglz.version>2.0.1.RELEASE</thymeleaf.togglz.version>
592592

593-
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot-dependencies/pom.xml) -->
593+
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot-dependencies/pom.xml) -->
594594
<thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
595595

596596
<togglz.version>2.6.1.Final</togglz.version>

src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spring.mvc.favicon.enabled: false
1515

1616
spring.cache.type: none
1717

18-
# See for details: http://docs.spring.io/autorepo/docs/spring-boot/1.5.15.RELEASE/api/org/springframework/boot/autoconfigure/web/MultipartProperties.html
18+
# See for details: http://docs.spring.io/autorepo/docs/spring-boot/1.5.16.RELEASE/api/org/springframework/boot/autoconfigure/web/MultipartProperties.html
1919
spring.http.multipart.location: /tmp
2020
spring.http.multipart.max-request-size: 10Mb
2121
spring.http.multipart.max-file-size: 5Mb

src/test/resources/logback-test.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!--
55
See for details:
66
http://docs.spring.io/spring-boot/docs/1.5.x/reference/html/howto-logging.html#howto-configure-logback-for-logging
7-
https://github.com/spring-projects/spring-boot/blob/v1.5.15.RELEASE/spring-boot/src/main/resources/org/springframework/boot/logging/logback/base.xml
7+
https://github.com/spring-projects/spring-boot/blob/v1.5.16.RELEASE/spring-boot/src/main/resources/org/springframework/boot/logging/logback/base.xml
88
-->
99

1010
<!--

0 commit comments

Comments
 (0)