如何通过命令行刷新 eclipse 项目?
(相当于右键单击>在包视图中刷新)
我需要在 Maven 夜间构建之后从批处理中刷新 Eclipse。
如何通过命令行刷新 eclipse 项目?
(相当于右键单击>在包视图中刷新)
我需要在 Maven 夜间构建之后从批处理中刷新 Eclipse。
我知道有蚂蚁任务可以做到这一点:
<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