GH-111 - Optionally depend on Spring Boot autoconfiguration to keep Javadoc happy.

ModulithMetadata refers to SpringBootApplication in its Javadoc, which requires us to have the JAR on the classpath for Javadoc creation as the linting otherwise fails.
This commit is contained in:
Oliver Drotbohm
2023-01-12 16:50:23 +01:00
parent 5c34886907
commit 54b8ffa566

View File

@@ -41,6 +41,12 @@
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>