在 Eclipse 中调试我的 Maven2 插件
我在 Eclipse 中为 Maven2 编写了一个插件。
如何在 Eclipse 中以调试模式运行插件?
如果可能的话,我想避免远程调试外部进程,并且我也想避免将插件安装到 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保为您运行插件的项目启用了“工作空间分辨率”,然后右键单击该项目并选择“调试为”>“工作空间分辨率”。 Maven 构建...
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...
可以调试集成/功能测试。请参阅以下资源:
以防万一(以及其他读者),维基页面 处理基于 Eclipse 的 IDE 解释了如何远程调试外部 Maven 进程(不知道为什么你想避免这种情况)。
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).