Imagine an Eclipse plug-in (resp. OSGi bundle) with a package org.acme.foo.bar
.
It's possible to export "." e.g. see the following MANIFEST.MF snippet:
Export-Package: .,
org.acme.foo.bar
Compiler has no problems with that so it seems to be a legit export.
What does it do? What is the difference to the following ("." not exported)?
Export-Package: org.acme.foo.bar