1) Bundle A reexports package com.X, which it gets from bundle C
2) Bundle B exports package com.X
3) Now bunlde D has dependency on both A and B.
From where will the bundle D get the package com.X from?
|
|
|
|
|
|
|
The first question is why you have 2 bundles defining the same package - this is called split packages and isn't recommended because you can have problems with shadowing. With With The simplest thing is to avoid split packages in the first place. |
||||
|