在我的一个项目上,当我运行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
发布于 2019-01-24 08:08:45
我们的项目org.springframework.cloud:spring-cloud-starter-parent:Brixton.M3中有一个物料清单,虽然这与Spring-Boot无关,但它控制着项目中的许多依赖项。我们将其升级到org.springframework.cloud:spring-cloud-starter-parent:Edgware.RELEASE,但这给我们的项目带来了其他问题,但这是另一回事。
https://stackoverflow.com/questions/54333019
复制相似问题