私のAntコード
<?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 はネストされた "copy" 要素をサポートしていません。
pde.exportPlugins 部分は Eclipse によって自動生成され、プラグインで jar を作成するバックグラウンド プロセスを実行します。
そのプラグインを、私が使用している eclpse の 3 つのインスタンスにコピーし、それを dropins フォルダーに入れたいと思います。どうやってするの ?