I'm using the "maven-bundle-plugin" to generate the MANIFEST.MF actomaticaly. Now I need to export a bundle without version.
I'm introducing this configuration:
<Export-Package>
org.name.package
</Export-Package>
But the plugin introduce directly the version of the bundle:
Export-Package: org.name.package;version="0.0.1"
Any idea how can I fix it?
Thank you!!!!