4

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

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

4

1 回答 1

3

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

<argLine>-ea -Dosgi.clean=true -Ddebug=true -Dosgi.console.enable.builtin=true</argLine>  
<appArgLine>-console 1234 -noExit</appArgLine>
于 2012-11-28T06:36:10.917 回答