Spring boot 为什么spring对Maven Central的依赖性与实际的本地依赖性不同?

Spring boot 为什么spring对Maven Central的依赖性与实际的本地依赖性不同?,spring-boot,maven,Spring Boot,Maven,我使用的是spring boot starter父级2.3.9。RELEASE它根据应该给我spring boot starter security 2.3.9。RELEASE它反过来应该给我spring security config 5.3.8.RELEASE <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-

我使用的是
spring boot starter父级2.3.9。RELEASE
它根据应该给我
spring boot starter security 2.3.9。RELEASE
它反过来应该给我
spring security config 5.3.8.RELEASE

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.9.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

org.springframework.boot

这意味着POM的
部分中的条目覆盖了版本


这可能是一个直接条目或BOM,您可以通过导入来识别。首先,给定的链接不指向Maven Central,这是:其次,您必须在某个地方通过其他BOM或其他依赖项直接或间接覆盖某些DEP。但是如果没有完整的pom文件,就不可能正确回答这个问题……除此之外,我想问为什么不使用最新版本的spring boot?(2.4.3)?谢谢-这是一个凌驾于其他问题之上的依赖管理问题