IDEA 报Plugin ‘maven-resources-plugin:’ not found 怎么解决

如果在使用 IDEA 时遇到 “Plugin ‘maven-resources-plugin:’ not found” 错误,可能是由于 Maven 仓库中未找到所需的 Maven 插件。您可以尝试以下解决方法:

1.清理 Maven 仓库并重新构建项目。可以使用以下命令清理 Maven 仓库:

mvn dependency:purge-local-repository

然后,重新构建项目:

mvn clean install

以上两行命令,完全可以在IDEA的命令行终端上运行。

2.检查您的 pom.xml 文件中是否正确地声明了 maven-resources-plugin 插件。确保以下行存在于 pom.xml 文件中:

org.apache.maven.pluginsmaven-resources-plugin3.2.0

3.检查您的 Maven 配置文件中是否正确地配置了 Maven 中央存储库。可以编辑您的 settings.xml 文件并确保以下配置行存在:

centralhttps://repo.maven.apache.org/maven2*

如果该行不存在,请添加它并重新构建项目。