Thanks All,
I have resolved it by adding com.itextpdf.*
in <Export-package>
tag. which solved my issue.
Note: I have to add other unresolved dependencies also in the Export and Import tags.
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>my-group-id.myexampleproj-bundle</Bundle-SymbolicName> <Export-Package>com.itextpdf.*,org.bouncycastle.*,org.apache.xml.security.*,org.apache.jcp.xml.dsig.*,org.apache.xml.*,org.apache.log.*,org.apache.jcp.*,org.apache.avalon.*,org.apache.xerces.*,org.apache.xpath.*,org.apache.xalan.*,org.apache.jcp.xml.dsig.internal.dom,org.apache.bcel.*,org.apache.xml.resolver.*,org.apache.regexp,java_cup.runtime</Export-Package>
<Import-Package>
sun.security.util;resolution:=optional,
sun.io;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
