我的蚂蚁代码
<?xml version="1.0" encoding="UTF-8"?>
<project default="plugin_export" name="build">
<target name="plugin_export">
<pde.exportPlugins destination="C:\" exportSource="false" exportType="directory" plugins="MyPlugin" useJARFormat="true" allowbinarycycles="true" filename="MyPlugin.jar" qualifier="X" />
<waitfor maxwait="15" maxwaitunit="minute">
<copy todir="j:\eclipse-rcp-juno-SR1-win32\dropins\">
<fileset dir="c:\plugins\">
<include name="*" />
</fileset>
</copy>
</waitfor>
</target>
</project>
它不起作用,因为我得到
windows_build.xml:8:waitfor 不支持嵌套的“复制”元素。
pde.exportPlugins 部分由 eclipse 自动生成,它运行后台进程,使用插件创建 jar。
我想将该插件复制到我使用的 3 个 eclpse 实例中,并将其放在 dropins 文件夹中。怎么做 ?