user33790
user33790

Reputation: 91

Does any one use OSGi's OBR?

Is anyone using the OSGi Bundle Repository and what for?

Upvotes: 8

Views: 2574

Answers (2)

Andrej
Andrej

Reputation: 606

I tried it in apache felix, i think it's great. You can point your osgi container to a number of obrs and when you install a bundle, the container will automatically install all required dependencies.

It's like apt-get install for application servers.

Upvotes: 9

user34892
user34892

Reputation: 81

I am using it!

When you develop an osgi bundle and the target platform doesn't include the libraries (jar/bundle) your bundle relies on, it needs to added to the target platform. you could either repackage your jar to make it an osgi bundle or just download the bundle from the OBR.

Eclipse also provides an OBR call Orbit, and springsource one is called Enterprise Bundle Repository.

Upvotes: 7

Related Questions