Maven报错: Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.0.2:resources

更多知识,请移步我的小破站:http://hellofriend.top

idea创建Maven项目时,报错显示Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.0.2:resources,并且Maven插件内看不到 mybatis-generator。如下图:
Maven报错: Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.0.2:resources_第1张图片
折腾了好久发现配置放错地方了,需要将 mybatis-generator 所在的 <plugins> 放在与 <pluginManagement> 同级别的目录下,修改配置如下: Maven报错: Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.0.2:resources_第2张图片
这时就会自动下载mybatis-generator插件,等待插件自动下载完成后,再将移动过的代码回归原位置,问题就得到了解决。

你可能感兴趣的:(Maven)