Use <_runsystempackages>org.example</_runsystempackages> in the <instructions> section of the configuration
ie. any bnd instruction that normally starts with a dash translates to an underscore in XML (because tags cannot start with dashes in XML) On 16 May 2014, at 04:24, Nishanth Chakrapani <[email protected]> wrote: > Hello Team, > I am using Maven bundle Plugin to create bundles. I am using a system > class "com.sun.net.ssl.internal.ssl.Provider()". But when i deploy this > bundle to the server, its showing "unable to resolve" error. I searched in > the internet and found that i have to use runsystempackages in bnd. But i > am not sure how to give this value in the pom.xml file under the > maven-bundle-plugin > > Here is a sample of my plugin definition in pom.xml > <plugin> > <groupId>org.apache.felix</groupId> > <artifactId>maven-bundle-plugin</artifactId> > <version>${maven-bundle-plugin.version}</version> > <extensions>true</extensions> > <configuration> > <obrRepository>NONE</obrRepository> > <instructions> > <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> > <Bundle-Name>${project.artifactId} built from > Gia-Basic-Archetype</Bundle-Name> > <Bundle-Version>${project.version}</Bundle-Version> > <Bundle-Classpath>.</Bundle-Classpath> > <Export-Package></Export-Package> > <Import-Package>com.ge.og.ibas.responsemax.api, > com.ge.og.ibas.responsemax.api.dashboard, > com.sun.net.ssl.internal.ssl, > javax.net.ssl, > com.ge.dsp.core.spi, > com.ge.dsp.core.spi.annotation, > org.osgi.framework;version="1.5", > org.osgi.service.blueprint, > org.apache.cxf.jaxrs.impl, > org.apache.cxf.jaxrs.provider, > org.codehaus.jackson.map, > org.codehaus.jackson.annotate, > org.codehaus.jackson.type, > org.codehaus.jackson.jaxrs, > javax.ws.rs;version=1.0, > javax.ws.rs.core;version=1.0, > javax.xml.bind;version=2.1.0, > javax.xml.bind.annotation;version=2.1.0, > javax.xml.bind.annotation.adapters, > org.springframework.beans.factory;version="${spring.version}", > org.springframework.beans.factory.annotation;version="${spring.version}"</Import-Package> > </instructions> > </configuration> > </plugin> > > -- > *Regards,* > *Nishanth.C* > *9962270939* --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

