On Thu, Jul 9, 2009 at 11:49 AM, Jagan Pappula<[email protected]> wrote: > Hi all, > > Is there any way to configure exported packages from system budle, or system > bundle simply exports the packages based on the underlying java version
Hi, please check http://felix.apache.org/site/apache-felix-framework-usage-documentation.html In particular, you're interested in setting two properties in the config.property file: * org.osgi.framework.system.packages - Specifies a comma-delimited list of packages that should be exported via the System Bundle from the parent class loader. The framework will set this to a reasonable default. If the value is specified, it replaces any default value. * org.osgi.framework.system.packages.extra - Specifies a comma-delimited list of packages that should be exported via the System Bundle from the parent class loader in addition to the packages in org.osgi.framework.system.packages. The default value is empty. If a value is specified, it is appended to the list of default or specified packages in org.osgi.framework.system.packages. -- Filippo Diotalevi --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

