Spring Boot 不使用默认的 parent
spring boot官方示例中,需要让我们继承一个spring的 spring-boot-starter-parent 这个parent:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
但是在自己的项目里,有时已经存在parent了,所以可以采取如下变通方法:
<dependencyManagement>
<dependencies>
<dependency>
<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>
参考:
Spring Boot官方文档中的 13.2.2 Using Spring Boot without the Parent POM。
(
https://docs.spring.io/spring-boot/docs/2.0.4.RELEASE/reference/htmlsingle/
)
版权声明:本文为csdnlyu原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。