Find the dependent bundles in Eclipse at runtime

后端 未结 3 1228
说谎
说谎 2021-01-13 04:14

How can an Eclipse bundle (eg. within activator code) find the dependent Bundle instances at runtime? I would like to find the bundles that Eclipse has choosen to satisfy th

3条回答
  •  野的像风
    2021-01-13 04:30

    You can open an OSGi console and issue the following commands:

    ss
    

    To the the list of bundles, including the numeric id

    bundle 
    

    to get more information, including dependencies.

    You should also try

    help
    

    to get more commands

提交回复
热议问题