My Ant code
<?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>
it doesn't work because i get
windows_build.xml: 8: waitfor does not support the nested copy element.
The pde.exportPlugins part is automatically generated by eclipse and starts the background process that creates the jar with the plugin.
I would like to copy this plugin into 3 eclpse instances that I use and put them in the dropins folder. How to do it?
source share