Bug 1891 : Fixing the karaf based modularity. Each new tab can be installed as karaf...
[dlux.git] / bundles / layout / src / main / resources / OSGI-INF / blueprint / blueprint.xml
1 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
2         <reference id="httpService" availability="mandatory" activation="eager" interface="org.osgi.service.http.HttpService"/>
3     <reference id="loader" availability="mandatory" activation="eager" interface="org.opendaylight.dlux.loader.DluxModuleLoader"/>
4     <bean id="bundle" init-method="initialize" destroy-method="clean" class="org.opendaylight.dlux.loader.DluxModule">
5         <property name="httpService" ref="httpService"/>
6         <property name="loader" ref="loader"/>
7         <property name="moduleName" value="layout"/>
8         <property name="url" value="/src/common/layout"/>
9         <property name="directory" value="/layout"/>
10         <property name="requireJs" value="common/layout/layout.module"/>
11         <property name="angularJs" value="app.common.layout"/>
12     </bean>
13 </blueprint>