Tagged Questions

BND is a Java tool for automated building bundles for an OSGi environment.

learn more… | top users | synonyms

1
vote
2answers
63 views

Spring OSGI service reference interfaces must be explicitly imported by consuming bundle?

I'm getting acquainted with Spring OSGI and Blueprint, but am having "classpath" difficulties (like many newbies). I have two OSGI bundles - one that defines various beans (using Blueprint, not ...
1
vote
1answer
84 views

BND Ant task - wrap non-OSGi jars

I'm trying to use Ant bndwrap task to wrap non-OSGi jars in a directory. My current Ant configuration for this is: <target name="wrap-jars" description="Wrap non-OSGi jars"> <taskdef ...
1
vote
2answers
129 views

BND puts the same package to both export and import sections of manifest.mf

I have a Vaadin application, which I'm trying to build as a set of OSGI bundles using Maven + BND. I can't deploy the bundles To Apache Felix because some dependencies can't be resolved. Apache ...
1
vote
1answer
93 views

bnd plugin for OSGI not working in Eclipse

I am using eclipse indigo release. I downloaded the bnd plugin (from http://www.aqute.biz/Bnd/Download). When i try to right-click on a bnd file and do a 'Make bundle'; I am getting this obscure error ...
0
votes
2answers
62 views

Embed thirdparty JAR using BND

I have an OSGi bundle that is built using ANT and the classic BND tool. My bundle uses a library (JAR) internally, which is not available as a bundle within my OSGi container (Apache Felix). So, I am ...
0
votes
3answers
311 views

OSGi/BND: How to exclude classes from bundle generation?

I have a bundle project (Eclipse) that has the following structure: src/main/java Bundle source files here src/test/java Bundle internal test cases When I try to make the bundle I get an ...