[Bug fix] Added spring-boot-starter dependecy and excluded spring-boot-starter-logging.

This commit is contained in:
Konstantina Galouni 2022-10-07 15:58:26 +03:00
parent 1c5b4fa6b3
commit 8952015cb8
1 changed files with 5 additions and 1 deletions

View File

@ -30,7 +30,7 @@
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
@ -38,6 +38,10 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>