You probably have to add exclusions to your wrapping pom. An example (H2 database) is:
Code:
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>javax.servlet.*;resolution:=optional,org.apache.lucene.*;resolution:=optional,org.slf4j;resolution:=optional,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
Add one package at a time, build and start the bundle and see what package it complains about next.