Community
Participate
Working Groups
I'm trying to automate the build for my RCP app using the pde.exportPlugins task. My "dist" target depends on the one below: <target name="_plugin.export"> <pde.exportPlugins destination="${my-plugins}" exportType="directory" exportSource="false" plugins="myplugin1, myplugin2" /> </target> When I run the build file, an error window pops up saying, "...already in progress. Concurrent ant builds are possible if you specify to build in a separate JRE". However, it can't run in a separate JRE because the pde task needs Eclipse's JRE. It seems like the pde task starts an ant build in addition to the one that is invoking it. This may or may not be related but it's a royal pain that this task runs in the background. There are steps in my build that depend on the outcome of this task so it would be nice to have the option of running it synchronously.
*** This bug has been marked as a duplicate of 58413 ***