I have a run/debug config for an application which works fine.
I have an Ant build script configured into the project. Although it's red all over, because we define some properties in a separate file, all of the targets work both from the command line and when manually run from within Idea.
There is an Ant target I want to run before launching the app from within Idea. (It copies a jar into place for an applet.) I tried checking the "run ant target" in the "before launch" section of my run/debug config.
Although Idea lets me select the Ant target I want, when I hit OK and then reopen the run/debug dialog the target isn't shown. However, the target does get registered in radar.ipr:
<executeOn event="beforeRun" target="tapplet-copy" runConfigurationType="Application" runConfigurationName="MyApp" />
However, the target doesn't actually run when I run the app from Idea.