Maven bundle plugin, as I know, will automatically add export/import package information to your bundle manifest.mf
file, according to it sources.
Sometimes you need manually specify export-packages for example if you want to add *.impl
packages, which maven-bundle-plugin will not include automatically.
But if you specify packages in <Export-Package>
tag, automatic export would not be performed.
If I have only one package that requires to be declared manually and other could be added to export-package block automatically by this plugin.
So I want to use automatically generated export-package manifest and add to it manually specified packages.
How can I turn on automatic generation of export info while I using manual?