[jboss-osgi-commits] JBoss-OSGI SVN: r100394 - projects/jboss-osgi/trunk/distribution/installer/src/main/resources/jbossas.

jboss-osgi-commits at lists.jboss.org jboss-osgi-commits at lists.jboss.org
Thu Feb 4 02:57:33 EST 2010


Author: thomas.diesler at jboss.com
Date: 2010-02-04 02:57:33 -0500 (Thu, 04 Feb 2010)
New Revision: 100394

Modified:
   projects/jboss-osgi/trunk/distribution/installer/src/main/resources/jbossas/jboss-beans-felix.xml
Log:
Fix NPE on Bundle.loadClass() in state INSTALLED

Modified: projects/jboss-osgi/trunk/distribution/installer/src/main/resources/jbossas/jboss-beans-felix.xml
===================================================================
--- projects/jboss-osgi/trunk/distribution/installer/src/main/resources/jbossas/jboss-beans-felix.xml	2010-02-04 07:42:29 UTC (rev 100393)
+++ projects/jboss-osgi/trunk/distribution/installer/src/main/resources/jbossas/jboss-beans-felix.xml	2010-02-04 07:57:33 UTC (rev 100394)
@@ -131,7 +131,8 @@
 
   <!-- The Bundle Management Deployer -->
   <bean name="jboss.osgi:service=BundleManagementDeployer" class="org.jboss.osgi.deployer.BundleManagementDeployer">
-   <property name="mbeanServer"><inject bean="JMXKernel" property="mbeanServer"/></property>
+    <property name="systemContext"><inject bean="jboss.osgi:service=Framework" property="bundleContext" /></property>
+    <property name="mbeanServer"><inject bean="JMXKernel" property="mbeanServer"/></property>
   </bean>
 
 </deployment>
\ No newline at end of file



More information about the jboss-osgi-commits mailing list