views:

36

answers:

2

I have a mavenized Eclipse plug-in project and I would like to be able to generate an OSGi-ready manifest for it. Is this supported by m2eclipse?

+1  A: 

If you have a maven project, you can use the Maven Bundle Plugin for this.

K. Claszen
+1  A: 

Indeed maven-bundle-plugin, when using eclipse also have a look at the "Eclipse/PDE integration" chapter to put the MANIFEST.MF in a location eclipse understands.

Leen Toelen