如何通过命令行刷新eclipse项目?
(在包视图中等效于右键单击>刷新)
我需要在maven nightly build之后从批处理中刷新eclipse。
答案 0 :(得分:3)
我知道有蚂蚁任务可以做到这一点:
<eclipse.convertPath fileSystemPath="/workspace/org.example.project"
property="resourcePath"/>
<eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
至于从命令行运行它,作为最坏的情况,你可以在ant脚本中调用eclipse antrunner应用程序:
eclipse -nosplash -application org.eclipse.ant.core.antRunner -f refresh.xml