Add blueprint wiring for loop remover
[l2switch.git] / features / src / main / features / features.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <features name="l2switch-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"
3           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4           xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0">
5   <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin/${openflow.plugin.version}/xml/features</repository>
6   <repository>mvn:org.opendaylight.netconf/features-restconf/${restconf.version}/xml/features</repository>
7   <repository>mvn:org.opendaylight.dlux/features-dlux/${dlux.version}/xml/features</repository>
8   <feature name='odl-l2switch-all' description="OpenDaylight :: L2Switch :: All" version='${project.version}'>
9     <feature version="${project.version}">odl-l2switch-switch</feature>
10   </feature>
11   <feature name='odl-l2switch-switch' description="OpenDaylight :: L2Switch :: Switch" version='${project.version}'>
12     <feature version="${project.version}">odl-l2switch-hosttracker</feature>
13     <feature version="${project.version}">odl-l2switch-arphandler</feature>
14     <bundle>mvn:org.opendaylight.l2switch.main/main-impl/{{VERSION}}</bundle>
15     <configfile finalname="${config.configfile.directory}/${config.l2switchmain.configfile}">mvn:org.opendaylight.l2switch.main/main-config/{{VERSION}}/xml/config</configfile>
16   </feature>
17   <feature name='odl-l2switch-switch-rest' description="OpenDaylight :: L2Switch :: Switch" version='${project.version}'>
18     <feature version="${project.version}">odl-l2switch-switch</feature>
19     <feature version="${restconf.version}">odl-restconf</feature>
20   </feature>
21   <feature name='odl-l2switch-switch-ui' description="OpenDaylight :: L2Switch :: Switch" version='${project.version}'>
22     <feature version="${project.version}">odl-l2switch-switch-rest</feature>
23     <feature version="${restconf.version}">odl-mdsal-apidocs</feature>
24     <feature version="${mdsal.version}">odl-mdsal-xsql</feature>
25     <feature version="${dlux.version}">odl-dlux-core</feature>
26   </feature>
27   <feature name='odl-l2switch-hosttracker' description="OpenDaylight :: L2Switch :: HostTracker" version='${project.version}'>
28     <feature version="${project.version}">odl-l2switch-addresstracker</feature>
29     <bundle>mvn:org.opendaylight.l2switch.hosttracker/hosttracker-model/{{VERSION}}</bundle>
30     <bundle>mvn:org.opendaylight.l2switch.hosttracker/hosttracker-impl/{{VERSION}}</bundle>
31   </feature>
32   <feature name='odl-l2switch-addresstracker' description="OpenDaylight :: L2Switch :: AddressTracker" version='${project.version}'>
33     <feature version="${project.version}">odl-l2switch-packethandler</feature>
34     <bundle>mvn:org.opendaylight.l2switch.addresstracker/addresstracker-model/{{VERSION}}</bundle>
35     <bundle>mvn:org.opendaylight.l2switch.addresstracker/addresstracker-impl/{{VERSION}}</bundle>
36   </feature>
37   <feature name='odl-l2switch-arphandler' description="OpenDaylight :: L2Switch :: ArpHandler" version='${project.version}'>
38     <feature version="${project.version}">odl-l2switch-packethandler</feature>
39     <feature version="${project.version}">odl-l2switch-loopremover</feature>
40     <bundle>mvn:org.opendaylight.l2switch.addresstracker/addresstracker-model/{{VERSION}}</bundle>
41     <bundle>mvn:org.opendaylight.l2switch.arphandler/arphandler-impl/{{VERSION}}</bundle>
42   </feature>
43   <feature name='odl-l2switch-loopremover' description="OpenDaylight :: L2Switch :: LoopRemover" version='${project.version}'>
44     <feature version="${openflow.plugin.version}">odl-openflowplugin-flow-services</feature>
45     <bundle>mvn:org.opendaylight.l2switch.loopremover/loopremover-model/{{VERSION}}</bundle>
46     <bundle>mvn:org.opendaylight.l2switch.loopremover/loopremover-impl/{{VERSION}}</bundle>
47     <bundle>mvn:org.opendaylight.controller.thirdparty/net.sf.jung2/2.0.1</bundle>
48   </feature>
49   <feature name='odl-l2switch-packethandler' description="OpenDaylight :: L2Switch :: PacketHandler" version='${project.version}'>
50     <feature version="${openflow.plugin.version}">odl-openflowplugin-southbound</feature>
51     <bundle>mvn:org.opendaylight.l2switch.packethandler/packethandler-model/{{VERSION}}</bundle>
52     <bundle>mvn:org.opendaylight.l2switch.packethandler/packethandler-impl/{{VERSION}}</bundle>
53     <configfile finalname="${config.configfile.directory}/${config.packethandler.configfile}">mvn:org.opendaylight.l2switch.packethandler/packethandler-config/{{VERSION}}/xml/config</configfile>
54   </feature>
55 </features>