tags:

views:

37

answers:

2

I have installed the m2eclipse plugin with galelio. I want to create a hello world osgi bundle with this setup. Appreciate if someone could point me to some tutorial or give some direction.

currently i am using maven 2.2.1

+1  A: 

I do not know the eclipse way to create bundles (Plug-in Project) but I can recommend using the OPS4J Pax tools.

Try the Maven-Pax-Plugin (1) to create the bundle (pax:create-bundle (2))and than import the bundle to your eclipse workspace with Import... -> Maven -> Existing Maven Project. Run the bundle with pax:provision (3)

(1): www.ops4j.org/projects/pax/construct/maven-pax-plugin/index.html

(2): www.ops4j.org/projects/pax/construct/maven-pax-plugin/create-bundle-mojo.html

(3): www.ops4j.org/projects/pax/construct/maven-pax-plugin/provision-mojo.html

(As a new user I was not allowed to post more than one link - so I hat to provide the links as plain text without 'http://'. Sorry for that!)

K. Claszen
A: 

Hi,

here is a small OSGi tutorial (1) that helps you to see the main steps of OSGi bundle development.

Cheers, Dmytro

(1): http://blog.knowhowlab.org/2010/06/osgi-tutorial-from-project-structure-to.html

Dmytro Pishchukhin