GH-237 - Core starter now references the Spring Boot Starter explicitly.

As recommended in the Spring Boot reference documentation [0].

[0] https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#features.developing-auto-configuration.custom-starter.starter-module
This commit is contained in:
Oliver Drotbohm
2023-07-10 15:38:05 +02:00
parent f8da2e86a8
commit 289dd8b6ab

View File

@@ -41,6 +41,11 @@
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
</dependencies>
</project>