fix issue 870 (all the details are there in the comments) (#872)

* fix

* trigger build

* trigger build
This commit is contained in:
erabii
2021-10-21 11:40:50 -04:00
committed by GitHub
parent 68436f7dca
commit 32a8ae83dd
2 changed files with 8 additions and 0 deletions

View File

@@ -51,6 +51,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>