Add blueprint wiring for loopback controller-config
[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     </feature>
30
31     <feature name='odl-netconf-connector' version='${project.version}' description="OpenDaylight :: Netconf Connector :: Netconf Connector">
32         <feature version='${controller.mdsal.version}'>odl-mdsal-broker</feature>
33         <feature version='${project.version}'>odl-netconf-notifications-api</feature>
34         <feature version='${project.version}'>odl-netconf-client</feature>
35         <feature version='${mdsal.model.version}'>odl-mdsal-models</feature>
36         <bundle>mvn:com.google.code.gson/gson/{{VERSION}}</bundle>
37         <bundle>mvn:org.opendaylight.netconf/sal-netconf-connector/{{VERSION}}</bundle>
38         <bundle>mvn:org.opendaylight.controller.model/model-inventory/{{VERSION}}</bundle>
39         <bundle>mvn:org.opendaylight.netconf/netconf-topology/{{VERSION}}</bundle>
40         <bundle>mvn:org.opendaylight.netconf/sal-netconf-connector/{{VERSION}}</bundle>
41         <configfile finalname='${config.configfile.directory}/${config.netconf.client.configfile}'>mvn:org.opendaylight.netconf/netconf-config/{{VERSION}}/xml/config</configfile>
42     </feature>
43
44     <feature name='odl-netconf-connector-ssh' version='${project.version}' description="OpenDaylight :: Netconf Connector :: Netconf Connector + Netconf SSH Server + loopback connection configuration">
45         <feature version='${project.version}'>odl-netconf-topology</feature>
46         <bundle>mvn:org.opendaylight.netconf/netconf-connector-config/{{VERSION}}</bundle>
47     </feature>
48
49     <feature name='odl-netconf-topology' version='${project.version}' description="OpenDaylight :: Netconf Topology :: Netconf Connector + Netconf SSH Server + Netconf configuration via config topology datastore">
50         <feature version='${project.version}'>odl-netconf-ssh</feature>
51         <feature version='${project.version}'>odl-netconf-connector</feature>
52         <bundle>mvn:org.opendaylight.netconf/netconf-topology-config/{{VERSION}}</bundle>
53     </feature>
54
55     <feature name='odl-netconf-clustered-topology' version='${project.version}' description="OpenDaylight :: Clustered Netconf Topology :: Netconf Connector + Netconf SSH Server">
56         <feature version='${project.version}'>odl-netconf-ssh</feature>
57         <feature version='${project.version}'>odl-netconf-connector</feature>
58         <bundle>mvn:org.opendaylight.netconf/netconf-topology-singleton/{{VERSION}}</bundle>
59     </feature>
60
61     <feature name='odl-netconf-console' version='${project.version}' description="OpenDaylight :: Netconf Console + Karaf CLI for netconf CRUD operations">
62        <feature version='${controller.mdsal.version}'>odl-netconf-mdsal</feature>
63        <feature version='${project.version}'>odl-netconf-connector-all</feature>
64        <feature version='${project.version}'>odl-netconf-topology</feature>
65        <bundle>mvn:org.opendaylight.netconf/netconf-console/{{VERSION}}</bundle>
66     </feature>
67
68 </features>