I've written a plugin for Maven2 in Eclipse.
How can I run the plugin in debug mode in Eclipse?
If possible, I'd like to avoid remote debugging an external process and I'd also like to avoid installing plugins into Eclipse.
I've written a plugin for Maven2 in Eclipse.
How can I run the plugin in debug mode in Eclipse?
If possible, I'd like to avoid remote debugging an external process and I'd also like to avoid installing plugins into Eclipse.
Make sure that "workspace resolution" is enabled for the project you're running the plugin from, then right click on this project and select Debug As > Maven build...
It is possible to debug integration/functional tests. See the following resources:
Just in case (and for other readers), the wiki page Dealing with Eclipse-based IDE explains how to remote debug an external Maven process (not sure why you want to avoid this).