我有一些与春季“物料清单”的依赖管理相关的问题:
我们的项目使用由平台BOM管理的几个依赖项
答案 0 :(得分:3)
Spring Cloud Dependencies BOM必须先行,以便它 依赖项优先于Spring IO Platform依赖项。
<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>
was determined平台无法管理spring cloud的依赖关系。这是将弹簧平台与弹簧云一起使用的推荐方法。