maven… Failed to clean project: Failed to delete ..\org.ow2.util.asm-asm-tree-3.1.jar

后端 未结 20 1706
臣服心动
臣服心动 2020-12-24 10:02

I use STS(spring tool suite) + maven plugin.

Every time when I run my application using maven-clean I see following error:

[INFO] Scanni         


        
相关标签:
20条回答
  • 2020-12-24 11:07

    The reason for this error is, the file which maven is trying to delete is being used by some process. One example of such process is Eclipse or any other IDE is doing validation on same project.

    Please make sure that no validation running from eclipse or in any other IDE where project is open.

    0 讨论(0)
  • 2020-12-24 11:08

    Maven complains if you do not have admin permissions on the target folder.Check if you have admin right to delete that folder.

    0 讨论(0)
提交回复
热议问题