首页 > 其他分享 >SpringBoot项目的pom.xml文件中maven-project-info-reports-plugin报红解决办法

SpringBoot项目的pom.xml文件中maven-project-info-reports-plugin报红解决办法

时间:2022-10-04 20:23:42浏览次数:81  
标签:xml info SpringBoot project plugin reports maven pom

今天在创建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>

标签:xml,info,SpringBoot,project,plugin,reports,maven,pom
From: https://www.cnblogs.com/luyj00436/p/16754367.html

相关文章