HomeOfTheWizard / spring-bridge-maven-plugin

A maven plugin that enables the usage of spring libraries in the development of other maven plugins
1 stars 0 forks source link

[spring-boot] Use spring boot starter instead of spring libraries for building and starting context. #3

Open HomeOfTheWizard opened 1 year ago

HomeOfTheWizard commented 1 year ago

Currently we use the following seperate dependencies for managing a spring context.

<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>5.3.16</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.3.16</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <version>5.3.16</version>
        </dependency>

This keeps the effective dependency tree small but Spring starters are a better idea. This will give multiple new features without managing the interoperability of the different lib versions.