Implementing VBD API in Vpp renderer
[groupbasedpolicy.git] / features / src / main / features / features.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <features name="odl-groupbasedpolicy-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"
11           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12           xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0">
13
14     <!-- Repos needed by all -->
15     <repository>mvn:org.opendaylight.mdsal/features-mdsal/{{VERSION}}/xml/features</repository>
16     <repository>mvn:org.opendaylight.controller/features-mdsal/{{VERSION}}/xml/features</repository>
17     <repository>mvn:org.opendaylight.mdsal.model/features-mdsal-model/{{VERSION}}/xml/features</repository>
18     <!-- Repos needed by the OpenFlow Overlay renderer -->
19     <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin/{{VERSION}}/xml/features</repository>
20     <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin-extension/{{VERSION}}/xml/features</repository>
21     <repository>mvn:org.opendaylight.ovsdb/southbound-features/{{VERSION}}/xml/features</repository>
22     <!-- Repos needed by the Fabric As A Service (FAAS) renderer -->
23     <repository>mvn:org.opendaylight.faas/features-faas/{{VERSION}}/xml/features</repository>
24     <!-- Repos needed by the Neutron Mapper -->
25     <repository>mvn:org.opendaylight.neutron/features-neutron/{{VERSION}}/xml/features</repository>
26     <!-- Repos needed by ofoverlay for SFC -->
27     <repository>mvn:org.opendaylight.sfc/features-sfc/{{VERSION}}/xml/features</repository>
28     <!-- Repos needed by the UI Backend -->
29     <repository>mvn:org.opendaylight.netconf/features-restconf/{{VERSION}}/xml/features</repository>
30     <!-- Repos needed by the UI -->
31     <repository>mvn:org.opendaylight.dlux/features-dlux/{{VERSION}}/xml/features</repository>
32     <!-- Repos needed by IOvisor Renderer -->
33     <repository>mvn:org.opendaylight.aaa/features-aaa-shiro/${aaa.version}/xml/features</repository>
34     <!-- Repos needed by sxp-mapper -->
35     <repository>mvn:org.opendaylight.sxp/features/${sxp.version}/xml/features</repository>
36     <!-- Repos needed by iosxe renderer -->
37     <repository>mvn:org.opendaylight.netconf/features-netconf-connector/${netconf.version}/xml/features</repository>
38     <!-- Repos needed by vpp renderer -->
39     <repository>mvn:org.opendaylight.honeycomb.vbd/vbd-features/${vbd.version}/xml/features</repository>
40
41     <!-- The common GBP components -->
42     <feature name='odl-groupbasedpolicy-base' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: Base Copmonents'>
43         <feature version="${controller.mdsal.version}">odl-mdsal-broker</feature>
44         <feature version='${mdsal.version}'>odl-mdsal-binding-base</feature>
45         <feature version='${mdsal.model.version}'>odl-mdsal-models</feature>
46         <bundle>mvn:commons-net/commons-net/{{VERSION}}</bundle>
47         <bundle>mvn:org.opendaylight.groupbasedpolicy/groupbasedpolicy/{{VERSION}}</bundle>
48         <configfile finalname="${config.configfile.directory}/15-groupbasedpolicy-base.xml">mvn:org.opendaylight.groupbasedpolicy/groupbasedpolicy/{{VERSION}}/xml/config</configfile>
49     </feature>
50
51     <!--
52         The OpenFlow Overlay renderer.
53
54         This can be added to the base to enable a
55         Network Virtualization behavior using OpenFlow
56     -->
57     <feature name='odl-groupbasedpolicy-ofoverlay' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: OpenFlow Overlay Renderer'>
58         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
59         <feature version="${openflowplugin.version}">odl-openflowplugin-flow-services</feature>
60         <feature version='${openflowplugin.version}'>odl-openflowplugin-nxm-extensions</feature>
61         <feature version='${ovsdb.southbound.version}'>odl-ovsdb-southbound-impl</feature>
62         <feature version='${sfc.version}'>odl-sfcofl2</feature>
63         <feature version='${sfc.version}'>odl-sfc-ui</feature>
64         <bundle>mvn:commons-net/commons-net/{{VERSION}}</bundle>
65         <bundle>mvn:org.opendaylight.groupbasedpolicy/ofoverlay-renderer/{{VERSION}}</bundle>
66         <bundle>mvn:com.sun.jersey/jersey-core/{{VERSION}}</bundle>
67         <bundle>mvn:com.sun.jersey/jersey-client/{{VERSION}}</bundle>
68         <bundle>mvn:com.google.code.gson/gson/{{VERSION}}</bundle>
69         <configfile finalname="${config.configfile.directory}/15-groupbasedpolicy-ofoverlay.xml">mvn:org.opendaylight.groupbasedpolicy/ofoverlay-renderer/{{VERSION}}/xml/config</configfile>
70     </feature>
71
72     <!--
73         The OpenFlow Overlay renderer with SFC.
74
75         This can be added to the base to enable a
76         Network Virtualization behavior using OpenFlow that integrates with the SFC project
77     -->
78     <feature name='odl-groupbasedpolicy-ovssfc' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: OpenFlow Overlay SFC Renderer'>
79         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
80         <feature version="${openflowplugin.version}">odl-openflowplugin-flow-services</feature>
81         <feature version='${openflowplugin.version}'>odl-openflowplugin-nxm-extensions</feature>
82         <feature version='${ovsdb.southbound.version}'>odl-ovsdb-southbound-impl</feature>
83         <feature version='${sfc.version}'>odl-sfcofl2</feature>
84         <feature version='${sfc.version}'>odl-sfc-ui</feature>
85         <bundle>mvn:commons-net/commons-net/{{VERSION}}</bundle>
86         <bundle>mvn:org.opendaylight.groupbasedpolicy/ovssfc-renderer/{{VERSION}}</bundle>
87         <configfile finalname="${config.configfile.directory}/15-groupbasedpolicy-ovssfc.xml">mvn:org.opendaylight.groupbasedpolicy/ovssfc-renderer/{{VERSION}}/xml/config</configfile>
88     </feature>
89
90     <!--
91         The FAAS renderer.
92
93         This renderer maps GBP service model to the common abstraction logical network models
94         of the Fabric As A Service (FAAS). In turns, FAAS maps those abstraction
95         models to the physical networks.
96     -->
97     <feature name='odl-groupbasedpolicy-faas' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: Fabric As A Service Renderer'>
98         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
99         <feature version='${faas.version}'>odl-faas-uln-mapper</feature>
100         <bundle>mvn:org.opendaylight.groupbasedpolicy/faas-renderer/{{VERSION}}</bundle>
101         <configfile finalname="${config.configfile.directory}/15-groupbasedpolicy-faas.xml">mvn:org.opendaylight.groupbasedpolicy/faas-renderer/{{VERSION}}/xml/config</configfile>
102     </feature>
103
104     <!--
105         The IOVisor renderer.
106
107         This renderer maps GBP service model to agents of the IOVisor Linux Foundation project.
108     -->
109     <feature name='odl-groupbasedpolicy-iovisor' version='${project.version}'
110              description='OpenDaylight :: groupbasedpolicy :: IOVisor Renderer'>
111         <feature>war</feature>
112         <feature version='${aaa.version}'>odl-aaa-shiro</feature>
113         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
114         <feature version="${restconf.version}">odl-restconf</feature>
115         <bundle>mvn:org.opendaylight.groupbasedpolicy/iovisor-renderer/{{VERSION}}</bundle>
116         <bundle>mvn:com.sun.jersey/jersey-core/{{VERSION}}</bundle>
117         <bundle>mvn:com.sun.jersey/jersey-client/{{VERSION}}</bundle>
118         <bundle>mvn:com.google.code.gson/gson/{{VERSION}}</bundle>
119         <configfile finalname="${config.configfile.directory}/15-groupbasedpolicy-iovisor.xml">mvn:org.opendaylight.groupbasedpolicy/iovisor-renderer/{{VERSION}}/xml/config</configfile>
120     </feature>
121
122     <!--
123         The NETCONF renderer.
124
125         This renderer maps GBP service model to NETCONF based network elements.
126     -->
127     <feature name='odl-groupbasedpolicy-netconf' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: NETCONF Renderer'>
128         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
129         <bundle>mvn:org.opendaylight.groupbasedpolicy/netconf-renderer/{{VERSION}}</bundle>
130         <configfile finalname="${config.configfile.directory}/15-groupbasedpolicy-netconf.xml">mvn:org.opendaylight.groupbasedpolicy/netconf-renderer/{{VERSION}}/xml/config</configfile>
131     </feature>
132
133     <!--
134          The Neutron provider
135     -->
136     <feature name='odl-groupbasedpolicy-neutronmapper' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: Neutron Mapper mapps neutron APIs to GBP APIs '>
137         <feature version="${neutron.version}">odl-neutron-service</feature>
138         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
139         <bundle>mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}</bundle>
140         <bundle>mvn:org.opendaylight.neutron/dummyprovider/{{VERSION}}</bundle>
141         <bundle>mvn:org.opendaylight.groupbasedpolicy/neutron-mapper/{{VERSION}}</bundle>
142         <configfile finalname="${config.configfile.directory}/15-l2-l3-domain-extension.xml">mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}/xml/config</configfile>
143         <configfile finalname="${config.configfile.directory}/15-neutron-mapper.xml">mvn:org.opendaylight.groupbasedpolicy/neutron-mapper/{{VERSION}}/xml/config</configfile>
144     </feature>
145
146     <!--
147          The Neutron provider and OFOVERLAY renderer
148     -->
149     <feature name='odl-groupbasedpolicy-neutron-and-ofoverlay' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: Neutron Mapper mapps neutron APIs to GBP APIs '>
150         <feature version="${project.version}">odl-groupbasedpolicy-ofoverlay</feature>
151         <feature version="${project.version}">odl-groupbasedpolicy-neutronmapper</feature>
152         <bundle>mvn:org.opendaylight.groupbasedpolicy/neutron-ovsdb/{{VERSION}}</bundle>
153         <configfile finalname="${config.configfile.directory}/15-neutron-ovsdb.xml">mvn:org.opendaylight.groupbasedpolicy/neutron-ovsdb/{{VERSION}}/xml/config</configfile>
154     </feature>
155
156     <!--
157         The VPP renderer
158     -->
159     <feature name='odl-groupbasedpolicy-vpp' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: VPP renderer '>
160         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
161         <feature version="${netconf.version}">odl-netconf-topology</feature>
162         <feature version="${vbd.version}">odl-vbd-api</feature>
163         <bundle>mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}</bundle>
164         <bundle>mvn:org.opendaylight.groupbasedpolicy/vpp-renderer/{{VERSION}}</bundle>
165         <configfile finalname="${config.configfile.directory}/15-l2-l3-domain-extension.xml">mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}/xml/config</configfile>
166         <configfile finalname="${config.configfile.directory}/15-vpp-renderer.xml">mvn:org.opendaylight.groupbasedpolicy/vpp-renderer/{{VERSION}}/xml/config</configfile>
167     </feature>
168
169     <!--
170         The Neutron-VPP provider
171     -->
172     <feature name='odl-groupbasedpolicy-neutron-vpp-mapper' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: Neutron Mapper mapps neutron APIs to GBP APIs '>
173         <feature version="${project.version}">odl-groupbasedpolicy-neutronmapper</feature>
174         <feature version="${project.version}">odl-groupbasedpolicy-vpp</feature>
175         <bundle>mvn:org.opendaylight.groupbasedpolicy/neutron-vpp-mapper/{{VERSION}}</bundle>
176         <configfile finalname="${config.configfile.directory}/15-neutron-vpp-mapper.xml">mvn:org.opendaylight.groupbasedpolicy/neutron-vpp-mapper/{{VERSION}}/xml/config</configfile>
177     </feature>
178
179     <!--
180          The UI Backend
181     -->
182     <feature name='odl-groupbasedpolicy-uibackend' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: UI Backend provides APIs for UI '>
183         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
184         <feature version="${restconf.version}">odl-restconf</feature>
185         <bundle>mvn:org.opendaylight.groupbasedpolicy/ui-backend/{{VERSION}}</bundle>
186         <configfile finalname="${config.configfile.directory}/15-ui-backend.xml">mvn:org.opendaylight.groupbasedpolicy/ui-backend/{{VERSION}}/xml/config</configfile>
187     </feature>
188
189     <!--
190          UI
191     -->
192     <feature name='odl-groupbasedpolicy-ui' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: DLUX UI '>
193         <feature version="${dlux.version}">odl-dlux-core</feature>
194         <feature version="${dlux.version}">odl-dlux-yangvisualizer</feature>
195         <feature version="${project.version}">odl-groupbasedpolicy-uibackend</feature>
196         <bundle>mvn:org.opendaylight.groupbasedpolicy/groupbasedpolicy-ui-bundle/{{VERSION}}</bundle>
197         <bundle>mvn:org.opendaylight.groupbasedpolicy/groupbasedpolicy-old-ui-bundle/{{VERSION}}</bundle>
198     </feature>
199
200     <!--
201         SXP-MAPPER
202     -->
203     <feature name='odl-groupbasedpolicy-sxp-mapper' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: sxp-mapper'>
204         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
205         <feature version="${sxp.version}">odl-sxp-core</feature>
206         <bundle>mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}</bundle>
207         <bundle>mvn:commons-net/commons-net/{{VERSION}}</bundle>
208         <bundle>mvn:org.opendaylight.groupbasedpolicy/sxp-mapper/{{VERSION}}</bundle>
209         <configfile finalname="${config.configfile.directory}/15-l2-l3-domain-extension.xml">mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}/xml/config</configfile>
210         <configfile finalname="${config.configfile.directory}/15-groupbasedpolicy-sxp-mapper.xml">mvn:org.opendaylight.groupbasedpolicy/sxp-mapper/{{VERSION}}/xml/config</configfile>
211     </feature>
212
213     <!--
214          NE Location Provider
215     -->
216     <feature name='odl-groupbasedpolicy-ne-location-provider' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: NE location provider'>
217         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
218         <bundle>mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}</bundle>
219         <bundle>mvn:org.opendaylight.groupbasedpolicy/ne-location-provider/{{VERSION}}</bundle>
220         <configfile finalname="${config.configfile.directory}/15-l2-l3-domain-extension.xml">mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}/xml/config</configfile>
221         <configfile finalname="${config.configfile.directory}/15-ne-location-provider.xml">mvn:org.opendaylight.groupbasedpolicy/ne-location-provider/{{VERSION}}/xml/config</configfile>
222     </feature>
223
224     <!--
225        IOS-XE renderer
226     -->
227     <feature name='odl-groupbasedpolicy-ios-xe' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: ios-xe renderer'>
228         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
229         <feature version="${sfc.version}">odl-sfc-provider</feature>
230         <feature version="${sxp.version}">odl-sxp-core</feature>
231         <feature version="${netconf.version}">odl-netconf-topology</feature>
232         <bundle>mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}</bundle>
233         <bundle>mvn:org.opendaylight.groupbasedpolicy/sxp-mapper/{{VERSION}}</bundle>
234         <bundle>mvn:org.opendaylight.groupbasedpolicy/ios-xe-renderer/{{VERSION}}</bundle>
235         <configfile finalname="${config.configfile.directory}/15-l2-l3-domain-extension.xml">mvn:org.opendaylight.groupbasedpolicy/l2-l3-domain-extension/{{VERSION}}/xml/config</configfile>
236         <configfile finalname="${config.configfile.directory}/15-groupbasedpolicy-ios-xe-renderer.xml">mvn:org.opendaylight.groupbasedpolicy/ios-xe-renderer/{{VERSION}}/xml/config</configfile>
237     </feature>
238 </features>