今天在创建SpringBoot项目时发现导包是没有任何问题的,但是pom文件中maven-project-info-reports-plugin一直有报红,如下图所示:
在该pom文件中引入maven-project-info-reports-plugin依赖包即可解决以上问题。
<dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.0.0</version> <type>maven-plugin</type> </dependency>