Hello,
I'm using the 7.2 release of wildfly and I'm trying the deployment of several osgi bundles with an EAR. So, the problem is that all my bundles first_module_use is deferred to PASSIVE. The messages look like this:
12:01:47,750 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015970: Defer FIRST_MODULE_USE for app.ear making it LAZY 12:01:47,754 INFO [org.jboss.as.server.deployment] (MSC service thread 1-11) JBAS015970: Defer FIRST_MODULE_USE for module-a-1.0.0-SNAPSHOT.jar making it PASSIVE 12:01:47,754 INFO [org.jboss.as.server.deployment] (MSC service thread 1-11) JBAS015970: Defer FIRST_MODULE_USE for module-b-1.0.0-SNAPSHOT.jar making it PASSIVE 12:01:47,754 INFO [org.jboss.as.server.deployment] (MSC service thread 1-11) JBAS015970: Defer FIRST_MODULE_USE for module-c-1.0.0-SNAPSHOT.jar making it PASSIVE
Is there any way to force the activation of all the bundles deployed with the ear?
Thanks!
Well, I found that my bundle's start() is been called, I thought it was not called because I didn't see the logs I put there in the console, so the problem is other.