GH-545 - Avoid inclusion of starters in Spring Boor repackaged JARs.

This commit is contained in:
Oliver Drotbohm
2024-04-08 20:20:39 +02:00
parent 7a4f18641c
commit 769cefab7d

View File

@@ -23,4 +23,21 @@
<module>spring-modulith-starter-test</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<archive>
<manifestEntries>
<Spring-Boot-Jar-Type>dependencies-starter</Spring-Boot-Jar-Type>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>