我正在寻找一种方法让 spring boot 管理一些插件版本而不使用 spring boot pom 作为我的父 pom。基本上我不想要一个父 pom(长话短说,但我不想要一个)。但是我仍然想要对正派和插件的版本管理。我从 spring 文档中找到了以下解决方案来管理依赖项版本,但我找不到如何管理插件版本。是否有类似于以下逻辑的东西来管理我的插件版本?<dependencyManagement> <dependencies> <dependency> <!-- Import dependency management from Spring Boot --> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.0.4.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency></dependencies></dependencyManagement>以下是我希望管理的示例。在以前的项目中,我的父 pom 会处理我的一些插件的版本。<plugin> <groupId>some group<groupId> <artifactId>some artifact</artifactId> <version>I want this managed without a parent pom</version>谢谢!
添加回答
举报
0/150
提交
取消