On 9/26/06, David Leangen <[EMAIL PROTECTED]> wrote:
>
> I'm just wondering if the manifest needs to be placed in
> META-INF/MANIFEST.MF, or can it be put somewhere else? Can I set this
> parameter somewhere? It wasn't evident to me by looking at the code...
If you want to include your META-INF/MANIFEST.MF, you could look at the link
http://maven.apache.org/guides/mini/guide-manifest.html

The downside with this approach is. You can not have the project
packaging  as osgi-bundle.


> Also, am I able to set these parameters, which seem to be auto-generated
> by the plugin?
>
>   Extension-Name
Is this related to Fragment-Host? If it is. This is an example on how to do it:
<project>
  ...
  <properties>
    <osgi-FragmentHost>
    com.codedragons.logger; extension:=framework
    </osgi-FragmentHost>
    ...
  </properties>
</project>

>   Implementation-Vendor
You can set the parameters by setting the value of project organisation.
For example:
<project>
   ...
  <organisation>codedragons</organisation>
  ...
</project>

>   Implementation-Title
I can't find this anywhere in the OSGI R4 spec.

Regards,
Edward

_______________________________________________
general mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/general

Reply via email to