spring-boot-maven-plugin 报红问题的解决

问题描述:

pom.xml 中的

1
<artifactId>spring-boot-maven-plugin</artifactId>

会报红。

解决:

根据 IDEA 的提示,发现应该是没有声明版本号的原因,因此,在下面声明版本号即可:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.6.4</version>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>

spring-boot-maven-plugin 报红问题的解决
http://fanlumaster.github.io/2022/03/02/spring-boot-maven-plugin-报红问题的解决/
作者
fanlumaster
发布于
2022年3月2日
许可协议