The activator for bundle is invalid

后端 未结 14 2248
-上瘾入骨i
-上瘾入骨i 2020-12-30 04:31

I\'m trying to create a simple plugin in eclipse. When I run the application, I see this error in log file:

org.osgi.framework.BundleException : The a

14条回答
  •  离开以前
    2020-12-30 04:45

    This can also happen if you name a bundle after a package in another bundle.

    So:

    • if you have Bundle A which contains package org.my.package.name.function,
    • and you create bundle B with name org.my.package.name.function,
      • => then the system may look for the activator there, and not find any.

提交回复
热议问题