Hi, So I have this case when I have two (or more) bundles exporting the same package, but different classes in them and I have another bundle which is importing classes from this package. The problem is that I am getting an error saying that some classes could not be found, i.e. classes from this common package. It seems as though the importing is possible only from one of the bundles. Importing the same package in those bundles in a manifest does not help.
I am using google guice and basically the error is originated in guice when it tries to inject one of those imported classes. I am suspecting that it has something to do with it, probably proxies guice creates or something like that. Does anybody know what I am talking about here? Any solutions? Bridge classloaders maybe? Thanks! -- Dmitry Skavish

