> If you have a 3rd party jar how does it get included? Seems like OSGi requires > the manifest to be modified which might be an issue. When "bundled" is there > another manifest created for OSGi?
There is no definite answer to this, as you first need to state what you are planning to do with that JAR. Will it only be needed by one component of your application, or will it be a crosscutting issue? If only a single component (i. e. bundle) needs access to that jar, you can safely put it into that bundle. If you need access to it from several bundles, you will very likely need to transform the JAR file into a bundle itself. bye, Michael The information included in this e-mail and any files transmitted with it is strictly confidential and may be privileged or otherwise protected from disclosure. If you are not the intended recipient, please notify the sender immediately by e-mail and delete this e-mail as well as any attachment from your system. If you are not the intended recipient you are not authorized to use and/or copy this message and/or attachment and/or disclose the contents to any other person.

