执行失败提示:[ERROR] Failed to execute goal org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean) on project xx: Failed to clean project: Failed to delete
原因:我的网站还在运行,构建需要删除的jar不能被删除,
解决方法:在执行前需要关闭网站结束进程,所以在waven.bat脚本中我添加了如下代码,目的是关闭我的网站服务:
@echo off set port=8095 (我的网站端口为8095,这个是根据项目配置的端口决定的) for /f "tokens=1-5" %%i in ('netstat -ano^|findstr ":%port%"') do taskkill /pid %%m -t -f
脚本中添加代码的作用:杀死占用8095端口的所有的进程