Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“
Posted 二木成林
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“相关的知识,希望对你有一定的参考价值。
异常
在 IDEA 中执行 Maven 的 compile
命令报错提示:
Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources) on project xxx: Cannot create resource output directory: C:\\xxx\\xxxxxx\\target\\classes
原因
是之前的 clean
命令并没有把项目的 target
文件夹给删除掉,打开项目目录找到 target
文件夹手动删除也无法成功。
解决
复制该 target
文件夹的绝对路径(如C:\\xxx\\xxxxxx\\target
)。接着打开【任务管理器】
找到【性能】面板,点击【打开资源监视器】
接着在【CPU】面板中的【关联的句柄】面板中的输入框中将刚才复制的路径粘贴进去
待搜索完成后,选中出现的结果,鼠标右键单击,选择【结束进程】
结束后再重新执行 Maven 的 compile
命令就可以正常编译了。
以上是关于Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“的主要内容,如果未能解决你的问题,请参考以下文章