在我的一个项目中,运行gradle依赖项时,我看到了
org.springframework.boot:spring-boot-actuator:1.5.6.RELEASE -> 1.3.0.RELEASE
我想使用Spring Boot 1.5.6,但不知道这是什么意思。
这就是gradle的方式
compile("org.springframework.boot:spring-boot-starter-web:${springBootVersion}")
compile("org.springframework.boot:spring-boot-starter-actuator:${springBootVersion}")
其中springBootVersion = 1.5.6.RELEASE
答案 0 :(得分:0)
我们在项目org.springframework.cloud:spring-cloud-starter-parent:Brixton.M3
中有一个BOM,尽管这与Spring-Boot无关,但它控制着项目中的许多依赖关系。我们将其升级为org.springframework.cloud:spring-cloud-starter-parent:Edgware.RELEASE
,但这为我们的项目带来了其他问题,但这是另一回事。