Hopefully this is an easy one: I wrote an Ant taskdef, how can I use the IntelliJ debugger (break points and all...) to execute this taskdef (there is no main class)?
I wrote an Ant taskdef, how can I use the IntelliJ debugger (break points and all...) to execute this taskdef (there is no main class)?
Add the debug options for remote debugging to the ANT_OPTS environment variable and then debug it like a normal report process. If necessary, change suspend=n to suspend=y to wait for IDEA to connect before starting the process.
Did as you said and IntelliJ connects to Ant and I can debug, thanks! still a small problem with arguments passing - but think I will be able to work it out.
Add the debug options for remote debugging to the ANT_OPTS environment variable
and then debug it like a normal report process. If necessary, change suspend=n
to suspend=y to wait for IDEA to connect before starting the process.
--Mike
Did as you said and IntelliJ connects to Ant and I can debug, thanks! still a small problem with arguments passing - but think I will be able to work it out.
David