Bootstrap

Maven项目报错:Plugin ‘maven-project-info-reports-plugin‘ not found

一、报错原因

在创建项目的时候,没有加入依赖

二、解决办法

导入相关的依赖即可,可在pom.xml中加入下面的依赖代码:

<dependencies>
    <dependency>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-project-info-reports-plugin</artifactId>
      <version>3.0.0</version>
      <type>maven-plugin</type>
    </dependency>
</dependencies>
;