我想知道有没有办法告诉eclipse中的osgi控制台在使用tycho-surefire-plugin运行测试后不退出?
我已经尝试了<argLine>-Dosgi.noShutdown=true</argLine>
和<appArgLine>-console -noExit</appArgLine>
,但我没有得到我想要的东西。
答案 0 :(得分:3)
我终于通过在远程调试模式下启动tycho测试成功进入OSGi控制台。但是,与上述解决方案相比,我必须使用以下配置:
<argLine>-ea -Dosgi.clean=true -Ddebug=true -Dosgi.console.enable.builtin=true</argLine>
<appArgLine>-console 1234 -noExit</appArgLine>