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