<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<version>${maven-felix-plugin.version}</version>
<executions>
<execution>
<id>manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<Bundle-SymbolicName>org.drools.camel</Bundle-SymbolicName>
<Import-Package>
!org.drools.camel.component,
!org.drools.jax.soap,
*
</Import-Package>
<Export-Package>
org.drools.camel.component,
org.drools.jax.soap
</Export-Package>
<!-- <DynamicImport-Package>*</DynamicImport-Package> -->
</instructions>
</configuration>
</plugin>