Merge "Revert "Revert "Added feature dependency on odl-ovsdb-southbound-impl"""
[groupbasedpolicy.git] / features / src / main / resources / 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.yangtools/features-yangtools/${yangtools.version}/xml/features</repository>
16     <repository>mvn:org.opendaylight.controller/features-mdsal/${mdsal.version}/xml/features</repository>
17
18     <!-- Repos needed by the OpenFlow Overlay renderer -->
19     <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin/${openflowplugin.version}/xml/features</repository>
20     <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin-extension/${openflowplugin.version}/xml/features</repository>
21     <repository>mvn:org.opendaylight.ovsdb/southbound-features/${ovsdb.southbound.version}/xml/features</repository>
22
23     <!-- Repos needed by the Neutron Mapper -->
24     <repository>mvn:org.opendaylight.neutron/features-neutron/${neutron.version}/xml/features</repository>
25
26     <!-- The common GBP components -->
27     <feature name='odl-groupbasedpolicy-base' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: Base Copmonents'>
28         <feature version="${mdsal.version}">odl-mdsal-broker</feature>
29         <feature version='${yangtools.version}'>odl-yangtools-binding</feature>
30         <feature version='${yangtools.version}'>odl-yangtools-models</feature>
31         <bundle>mvn:org.opendaylight.groupbasedpolicy/groupbasedpolicy/${project.version}</bundle>
32     </feature>
33
34     <!--
35         The OpenFlow Overlay renderer.
36
37         This can be added to the base to enable a
38         Network Virtualization behavior using OpenFlow
39     -->
40     <feature name='odl-groupbasedpolicy-ofoverlay' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: OpenFlow Overlay Renderer'>
41         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
42         <feature version="${openflowplugin.version}">odl-openflowplugin-flow-services</feature>
43         <feature version='${openflowplugin.version}'>odl-openflowplugin-nxm-extensions</feature>
44         <feature version='${ovsdb.southbound.version}'>odl-ovsdb-southbound-impl</feature>
45         <bundle>mvn:org.opendaylight.groupbasedpolicy/ofoverlay-renderer/${project.version}</bundle>
46         <configfile finalname="${config.configfile.directory}/${config.groupbasedpolicy.ofoverlayconfigfile}">mvn:org.opendaylight.groupbasedpolicy/groupbasedpolicy-ofoverlay-config/${project.version}/xml/config</configfile>
47     </feature>
48
49     <!--
50         The OpFlex renderer.
51
52         This can be added to the base to enable an
53         OpFlex renderer in the controller
54     -->
55     <feature name='odl-groupbasedpolicy-opflex' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: OpFlex Renderer'>
56         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
57         <bundle start="true">mvn:com.fasterxml.jackson.core/jackson-annotations/${jackson.version}</bundle>
58         <bundle start="true">mvn:com.fasterxml.jackson.core/jackson-core/${jackson.version}</bundle>
59         <bundle start="true">mvn:com.fasterxml.jackson.core/jackson-databind/${jackson.version}</bundle>
60         <bundle>mvn:org.opendaylight.groupbasedpolicy/opflex-renderer/${project.version}</bundle>
61         <configfile finalname="${config.configfile.directory}/${config.groupbasedpolicy.opflexconfigfile}">mvn:org.opendaylight.groupbasedpolicy/groupbasedpolicy-opflex-config/${project.version}/xml/config</configfile>
62     </feature>
63
64     <!--
65          The OpenStack Group Based Policy Northbound API.
66
67          This is actually built/packaged with the OpenFlow
68          Overlay renderer at the moment. All that's needed
69          for this package is just the config file that wires
70          things in.
71     -->
72     <feature name='odl-groupbasedpolicy-openstackgbp' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: Support OpenStack GBP Endpoints '>
73         <!-- DEPRECATED SOON.
74         <feature version="${project.version}">odl-groupbasedpolicy-ofoverlay</feature>
75         -->
76         <feature version="${mdsal.version}">odl-mdsal-broker</feature>
77         <configfile finalname="${config.configfile.directory}/${config.groupbasedpolicy.openstackendpointconfigfile}">mvn:org.opendaylight.groupbasedpolicy/groupbasedpolicy-openstackendpoint-config/${project.version}/xml/config</configfile>
78     </feature>
79
80
81     <!--
82          The Neutron provider
83     -->
84     <feature name='odl-groupbasedpolicy-neutronmapper' version='${project.version}' description='OpenDaylight :: groupbasedpolicy :: Neutron Mapper mapps neutron APIs to GBP APIs '>
85         <feature version="${mdsal.version}">odl-mdsal-broker</feature>
86         <feature version="${neutron.version}">odl-neutron-service</feature>
87         <feature version="${project.version}">odl-groupbasedpolicy-base</feature>
88         <feature version="${project.version}">odl-groupbasedpolicy-ofoverlay</feature>
89         <bundle>mvn:org.opendaylight.groupbasedpolicy/neutron-mapper/${project.version}</bundle>
90         <configfile finalname="${config.configfile.directory}/${config.groupbasedpolicy.neutronmapperconfigfile}">mvn:org.opendaylight.groupbasedpolicy/neutron-mapper-config/${project.version}/xml/config</configfile>
91     </feature>
92 </features>