Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources
一、问题背景
在 SpringBoot 工程编译过程中,出现报错信息:“Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources”。
效果如下:
二、解决方案
在 pom.xml 中的 plugins 下增加如下内容:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> </plugin>
再次执行 compile,即可编译成功,效果如下:
标签:execute,plugin,maven,plugins,apache,org,resources From: https://www.cnblogs.com/miracle-luna/p/17774296.html