Skip to content

Commit 5bc058b

Browse files
committed
deps: upgrade Spring Boot and other dependencies
1 parent b348095 commit 5bc058b

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

example/pom.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.2.5.RELEASE</version>
8+
<version>2.6.5</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.webeid.example</groupId>
@@ -29,6 +29,10 @@
2929
<groupId>org.springframework.boot</groupId>
3030
<artifactId>spring-boot-starter-web</artifactId>
3131
</dependency>
32+
<dependency>
33+
<groupId>org.springframework.boot</groupId>
34+
<artifactId>spring-boot-starter-validation</artifactId>
35+
</dependency>
3236
<dependency>
3337
<groupId>org.springframework.boot</groupId>
3438
<artifactId>spring-boot-starter-thymeleaf</artifactId>
@@ -45,18 +49,18 @@
4549
<dependency>
4650
<groupId>com.google.guava</groupId>
4751
<artifactId>guava</artifactId>
48-
<version>30.1-jre</version>
52+
<version>31.1-jre</version>
4953
</dependency>
5054
<dependency>
5155
<groupId>com.squareup.okhttp3</groupId>
5256
<artifactId>okhttp</artifactId>
53-
<version>4.9.0</version>
57+
<version>4.9.3</version>
5458
</dependency>
5559

5660
<dependency>
5761
<groupId>org.digidoc4j</groupId>
5862
<artifactId>digidoc4j</artifactId>
59-
<version>4.1.1</version>
63+
<version>4.3.0</version>
6064
</dependency>
6165
<dependency>
6266
<groupId>org.webeid.security</groupId>

example/src/main/resources/application.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
spring:
2+
main:
3+
allow-circular-references: true
4+
15
# Make session cookie secure behind a reverse proxy, see
26
# - https://docs.spring.io/spring-boot/docs/2.2.5.RELEASE/reference/htmlsingle/#howto-use-behind-a-proxy-server
37
# - https://docs.spring.io/spring-boot/docs/2.2.5.RELEASE/reference/htmlsingle/#howto-enable-https

0 commit comments

Comments
 (0)