I'm having some problems in a small OSGI project.
In one of the bundles I install and start programatically another bundle that wasn't installed before.
Nevertheless, when I run the project in Eclipse, jumps a ClassNot FoundException in the implementation of the bundle.
I believe it's because Eclipse automatically starts the project with a -dev parameter (development mode) pointing at dev.properties file where it specifies the bin folder where it builds each bundle. Obviously this dev.properties file created by Eclipse doesn't include the bundle I'll install later.
Is there any way to disable the dev mode when running with an OSGI configuration in Eclipse or, at least, to use a customized dev.properties file (eclipse creates and uses one created automatically and that updates everytime we try to run)?
the bundle installs without problems but when it tries to start jumps a classNotFoundException for the implementation of the bundle I just installed. The same thing happens when I try to do the same thing in the osgi console.
Is there any way to fix this problem? It can be other thing beside the dev.properties file?