我有一个 Eclipse TFS 插件。
我在 Eclipse 中运行 ant 脚本。真正的问题是,在构建脚本完成执行后,几个文件没有被标记为已修改。
那么有什么方法(cmd,sys调用等)我可以从ant访问eclipse插件吗?
更新 1
代码示例
<target name="test" description="test call.">
<replaceregexp file="${bc.file}" flags="sgi" match="${regexp.defaultdomain}" replace="${replace.defaultdomain}" />
<eclipse.refreshLocal depth="infinite" resource="BC" />
</target>
假设 BC 在我的工作区中。
这不起作用