I am wondering if there is any small samples available that use maven-bundle-plugin and osgi blueprint?
The bundle plugin seems to recognize the blueprint xml in OSGI-INF/blueprint, since if I malform this file it will complain, it also adds an erronous (?) import-package for org.osgi.service.blueprint that I have to ignore. But nothing happens with this file: <bean id="majs" class="se.sandos.android.delayed.server.impl.M"> </bean> <ma/> <bean class="se.sandos.android.delayed.server.impl.Main" activation="eager"> <property name="fetcher" ref="majs"/> </bean> It seems the blueprint bundle is not doing anything proactively when I just deploy my bundle together with the blueprint one. -- John Bäckstrand

