我想知道有没有办法告诉Eclipse中的osgi控制台在使用tycho-surefire-plugin运行测试后不要退出?

我已经尝试了<argLine>-Dosgi.noShutdown=true</argLine><appArgLine>-console -noExit</appArgLine>,但是我没有得到想要的东西。

最佳答案

通过在远程调试模式下启动tycho测试,我终于成功进入OSGi控制台。但是,与上述解决方案相比,我必须使用以下配置:

<argLine>-ea -Dosgi.clean=true -Ddebug=true -Dosgi.console.enable.builtin=true</argLine>
<appArgLine>-console 1234 -noExit</appArgLine>

10-05 18:45