首页 > 解决方案 > 这是什么意思 org.springframework.boot:spring-boot-actuator:1.5.6.RELEASE -> 1.3.0.RELEASE?

问题描述

在我运行 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

标签: javaspring-bootgradle

解决方案


我们的项目中有一个 BOM org.springframework.cloud:spring-cloud-starter-parent:Brixton.M3,虽然这与 Spring-Boot 无关,但它控制了项目中的许多依赖项。我们将其升级为org.springframework.cloud:spring-cloud-starter-parent:Edgware.RELEASE,但这给我们的项目带来了其他问题,但这是另一回事。


推荐阅读