Remove old clustered netconf topology implementation
[netconf.git] / features / netconf-connector / 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-controller-${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     <repository>mvn:org.opendaylight.mdsal.model/features-mdsal-model/{{VERSION}}/xml/features</repository>
15     <repository>mvn:org.opendaylight.controller/features-mdsal/{{VERSION}}/xml/features</repository>
16     <repository>mvn:org.opendaylight.yangtools/features-yangtools/{{VERSION}}/xml/features</repository>
17     <repository>mvn:org.opendaylight.netconf/features-netconf/{{VERSION}}/xml/features</repository>
18
19     <feature name='odl-netconf-connector-all' version='${project.version}' description='OpenDaylight :: Netconf Connector :: All'>
20         <feature version='${project.version}'>odl-netconf-connector</feature>
21         <feature version='${project.version}'>odl-netconf-connector-ssh</feature>
22     </feature>
23
24     <feature name='odl-message-bus' version='${project.version}'>
25         <!-- messagebus endpoint for netconf connector-->
26         <feature version='${project.version}'>odl-netconf-connector-all</feature>
27         <feature version='${controller.mdsal.version}'>odl-message-bus-collector</feature>
28         <bundle>mvn:org.opendaylight.netconf/messagebus-netconf/{{VERSION}}</bundle>
29         <configfile finalname="${config.configfile.directory}/06-message-netconf.xml">mvn:org.opendaylight.netconf/messagebus-netconf/{{VERSION}}/xml/config</configfile>
30     </feature>
31
32     <feature name='odl-netconf-connector' version='${project.version}' description="OpenDaylight :: Netconf Connector :: Netconf Connector">
33         <feature version='${controller.mdsal.version}'>odl-mdsal-broker</feature>
34         <feature version='${project.version}'>odl-netconf-notifications-api</feature>
35         <feature version='${project.version}'>odl-netconf-client</feature>
36         <feature version='${mdsal.model.version}'>odl-mdsal-models</feature>
37         <bundle>mvn:com.google.code.gson/gson/{{VERSION}}</bundle>
38         <bundle>mvn:org.opendaylight.netconf/sal-netconf-connector/{{VERSION}}</bundle>
39         <bundle>mvn:org.opendaylight.controller.model/model-inventory/{{VERSION}}</bundle>
40         <bundle>mvn:org.opendaylight.netconf/netconf-topology/{{VERSION}}</bundle>
41         <bundle>mvn:org.opendaylight.netconf/sal-netconf-connector/{{VERSION}}</bundle>
42         <bundle>mvn:org.opendaylight.netconf/netconf-config-dispatcher/{{VERSION}}</bundle>
43         <configfile finalname='${config.configfile.directory}/${config.netconf.client.configfile}'>mvn:org.opendaylight.netconf/netconf-config/{{VERSION}}/xml/config</configfile>
44     </feature>
45
46     <feature name='odl-netconf-connector-ssh' version='${project.version}' description="OpenDaylight :: Netconf Connector :: Netconf Connector + Netconf SSH Server + loopback connection configuration">
47         <feature version='${project.version}'>odl-netconf-topology</feature>
48         <configfile finalname="${config.configfile.directory}/${config.netconf.connector.configfile}">mvn:org.opendaylight.netconf/netconf-connector-config/{{VERSION}}/xml/config</configfile>
49     </feature>
50
51     <feature name='odl-netconf-topology' version='${project.version}' description="OpenDaylight :: Netconf Topology :: Netconf Connector + Netconf SSH Server + Netconf configuration via config topology datastore">
52         <feature version='${project.version}'>odl-netconf-ssh</feature>
53         <feature version='${project.version}'>odl-netconf-connector</feature>
54         <configfile finalname='${config.configfile.directory}/${config.netconf.topology.configfile}'>mvn:org.opendaylight.netconf/netconf-topology-config/{{VERSION}}/xml/config</configfile>
55     </feature>
56
57     <feature name='odl-netconf-clustered-topology' version='${project.version}' description="OpenDaylight :: Clustered Netconf Topology :: Netconf Connector + Netconf SSH Server">
58         <feature version='${project.version}'>odl-netconf-ssh</feature>
59         <feature version='${project.version}'>odl-netconf-connector</feature>
60         <bundle>mvn:org.opendaylight.netconf/netconf-topology-singleton/{{VERSION}}</bundle>
61     </feature>
62
63     <feature name='odl-netconf-console' version='${project.version}' description="OpenDaylight :: Netconf Console + Karaf CLI for netconf CRUD operations">
64        <feature version='${controller.mdsal.version}'>odl-netconf-mdsal</feature>
65        <feature version='${project.version}'>odl-netconf-connector-all</feature>
66        <feature version='${project.version}'>odl-netconf-topology</feature>
67        <bundle>mvn:org.opendaylight.netconf/netconf-console/{{VERSION}}</bundle>
68        <configfile finalname='${config.configfile.directory}/${config.netconf.console.configfile}'>mvn:org.opendaylight.netconf/netconf-console/{{VERSION}}/xml/config</configfile>
69     </feature>
70
71 </features>