Merge branch '2.0.x'

This commit is contained in:
Ryan Baxter
2021-10-21 11:42:55 -04:00
2 changed files with 8 additions and 0 deletions

View File

@@ -55,6 +55,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>

View File

@@ -66,6 +66,13 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-json</artifactId>
<exclusions>
<!-- exclusion is safe since we already declare this one, as optional=true -->
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>