有些场景下,我们就是不能直接继承spring-boot-starter-parent,那么该如何做到版本管理呢?
关于这一点,SpringBoot官方给出了解决版本,就是使用标签来解决。除此之外,还需要将打包插件设置为repackage。
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.3.0.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
版权声明:本文为m0_43448868原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。