DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| No Format |
|---|
Bundle-Activator: tutorial.example2.Activator Export-Package: tutorial.example2.service Bundle-Name: English dictionary Bundle-Description: A bundle that registers an English dictionary service Bundle-Vendor: RichardApache HallFelix Bundle-Version: 1.0.0 |
As before, much of the meta-data in the manifest file above is for human consumption. We specify which class is used to activate our bundle via the Bundle-Activator attribute and also specify that our bundle exports a shared package using the Export-Package attribute. The Export-Package attribute makes it possible for other bundles to import our dictionary service interface.
...