Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道有没有办法告诉 Eclipse 中的 osgi 控制台在使用 tycho-surefire-plugin 运行测试后不要退出?
我已经尝试过<argLine>-Dosgi.noShutdown=true</argLine>and <appArgLine>-console -noExit</appArgLine>,但我没有得到我想要的。
<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>