Hi, I'm exporting all the packages in a bundle that contains other non osgi jars. In my pom.xml I have dependencies like this
<dependency>
<groupId>javax.jws</groupId>
<artifactId>jsr181-api</artifactId>
<version>1.0</version>
</dependency>
My export config looks like this
<Export-Package>*;-split-package:=merge-first</Export-Package>
How can I configure it to obtain something like this
Export-Package:javax.jws;version=1.0
Now I get the package exported with version 0.0.0
Tahnk you!

