我正在尝试使用Versions Maven Plugin以及spring-boot
.
问题:当运行versions:display-dependency-updates
autoecheck 以获取最新的依赖项时,我不仅得到了我定义的更新pom.xml
,而且得到了所有从spring-boot-starter-parent
.
问题:如何防止继承并只显示自定义依赖项?
<project>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
<properties>
<cxf.version>3.0.0</cxf.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${cxf.version}</version>
</dependency>
</dependencies>
</project>
充其量,该插件会通知我类似的更新:
spring-boot-starter-parent.....2.0.0 -> 2.0.3
cxf-rt-frontend-jaxws..........3.0.0 -> 3.2.6
但相反,我得到的输出是从 spring 父级继承的所有依赖项。