其他分享
首页 > 其他分享> > Spring Cloud与Spring Platform BOMs

Spring Cloud与Spring Platform BOMs

作者:互联网

我对春季“物料清单”中的依赖项管理有一些疑问:

>是否应该将两者都用于完整的spring依赖管理?
>它们不兼容吗?任何问题?

我们的项目使用由平台BOM管理的多个依赖项

解决方法:

documentation开始

The Spring Cloud Dependencies BOM must go first, so that its
dependencies have precedence of the Spring IO Platform dependencies.

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Brixton.SR1</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
        <dependency>
            <groupId>io.spring.platform</groupId>
            <artifactId>platform-bom</artifactId>
            <version>2.0.5.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

平台无法管理Spring Cloud的依赖项,原因是was determined.这是将弹簧平台与弹簧云一起使用的推荐方法.

标签:spring-boot,spring-cloud,spring
来源: https://codeday.me/bug/20191118/2028529.html