Hi Team,

I am making a jar OSGI ready. It depends on "org.bouncycastle" package. An
older version of the same is exposed by "org.bouncycastle;
version="132.0.0"<wss4j_1.5.11.wso2v6 [423]>" but I want the new bundle
(org.bouncycastle; version="1.51.0"<bcprov_1.51.0 [22]>)  to be resolved
instead , so I defined it in maven bundle plugin.

here is my configuration:

> <plugin>
>                 <groupId>org.apache.felix</groupId>
>                 <artifactId>maven-bundle-plugin</artifactId>
>                 <extensions>true</extensions>
>                 <version>1.4.0</version>
>                 <configuration>
>                     <instructions>
>
> <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
>                         <Bundle-Name>${pom.artifactId}</Bundle-Name>
>                         <Import-Package>
>                             org.bouncycastle.*; version="1.51.0",
>                             *;resolution:=optional
>                         </Import-Package>
>                         <Export-Package>com.yubico.u2f.*,</Export-Package>
>                         <DynamicImport-Package>*</DynamicImport-Package>
>                     </instructions>
>                 </configuration>
>             </plugin>


"org.bouncycastle" package of the new bundle is still resolves to older one.

Imported packages
>     org.bouncycastle.asn1.sec; version="132.0.0"<wss4j_1.5.11.wso2v6 [423]
> >
>     org.bouncycastle.asn1.x9; version="132.0.0"<wss4j_1.5.11.wso2v6 [423]>
>     org.bouncycastle.jce.provider; version="132.0.0"<wss4j_1.5.11.wso2v6
> [423]>
>     org.bouncycastle.jce.spec; version="132.0.0"<wss4j_1.5.11.wso2v6 [423]>
>     org.bouncycastle.math.ec; version="132.0.0"<wss4j_1.5.11.wso2v6 [423]>
>     com.google.gson; version="2.2.4"<com.google.gson_2.2.4 [25]>
>     com.google.common.io; version="18.0.0"<com.google.guava_18.0.0 [27]>
>     com.google.common.collect; version="18.0.0"<com.google.guava_18.0.0
> [27]>
>     com.google.common.base; version="18.0.0"<com.google.guava_18.0.0 [27]>


How would I solve this issue.

Thanks in advance.
Regards,
*E. Ananthaneshan*
Associate Software Engineer
WSO2, Inc: http://wso2.com
Mob: +94 712307125
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to