Cleanup features a bit
[netconf.git] / features / netconf / src / main / features / features.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <features name="odl-netconf-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"
4           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5           xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0">
6   <repository>mvn:org.opendaylight.odlparent/features-odlparent/{{VERSION}}/xml/features</repository>
7   <repository>mvn:org.opendaylight.controller/features-protocol-framework/{{VERSION}}/xml/features</repository>
8   <repository>mvn:org.opendaylight.controller/features-config/{{VERSION}}/xml/features</repository>
9   <repository>mvn:org.opendaylight.controller/features-config-persister/{{VERSION}}/xml/features</repository>
10   <!-- FIXME: This introduces cycle between projects, which makes version updates
11               harder. Should be moved to different.
12       -->
13   <repository>mvn:org.opendaylight.aaa/features-aaa/${aaa.version}/xml/features</repository>
14
15   <feature name='odl-netconf-all' version='${project.version}' description="OpenDaylight :: Netconf :: All">
16     <feature version='${project.version}'>odl-netconf-api</feature>
17     <feature version='${project.version}'>odl-netconf-mapping-api</feature>
18     <feature version='${project.version}'>odl-netconf-util</feature>
19     <feature version='${project.version}'>odl-netconf-impl</feature>
20     <feature version='${project.version}'>odl-config-netconf-connector</feature>
21     <feature version='${project.version}'>odl-netconf-netty-util</feature>
22     <feature version='${project.version}'>odl-netconf-client</feature>
23     <feature version='${project.version}'>odl-netconf-monitoring</feature>
24   </feature>
25
26   <feature name='odl-netconf-api' version='${project.version}' description="OpenDaylight :: Netconf :: API">
27     <feature version='${protocol-framework.version}'>odl-protocol-framework</feature>
28     <!-- FIXME: Reference YANGTools via feateure instead of bundles -->
29     <bundle>mvn:org.opendaylight.yangtools/yang-model-api/{{VERSION}}</bundle>
30     <bundle>mvn:org.opendaylight.controller/config-util/{{VERSION}}</bundle>
31     <bundle>mvn:org.opendaylight.netconf/netconf-api/{{VERSION}}</bundle>
32     <bundle>mvn:org.opendaylight.netconf/netconf-auth/{{VERSION}}</bundle>
33     <bundle>mvn:org.opendaylight.netconf/ietf-netconf-monitoring/{{VERSION}}</bundle>
34     <bundle>mvn:org.opendaylight.netconf/ietf-netconf/{{VERSION}}</bundle>
35     <bundle>mvn:org.opendaylight.netconf/ietf-netconf-notifications/{{VERSION}}</bundle>
36     <bundle>mvn:org.opendaylight.netconf/ietf-netconf-monitoring-extension/{{VERSION}}</bundle>
37     <bundle>mvn:org.opendaylight.mdsal.model/ietf-inet-types/{{VERSION}}</bundle>
38     <bundle>mvn:org.opendaylight.mdsal.model/ietf-yang-types/{{VERSION}}</bundle>
39     <bundle>mvn:org.opendaylight.mdsal.model/ietf-yang-types-20130715/2013.07.15.8-SNAPSHOT</bundle>
40   </feature>
41
42   <feature name='odl-netconf-mapping-api' version='${project.version}' description="OpenDaylight :: Netconf :: Mapping API">
43     <feature version='${project.version}'>odl-netconf-api</feature>
44     <bundle>mvn:org.opendaylight.netconf/netconf-mapping-api/{{VERSION}}</bundle>
45   </feature>
46
47   <feature name='odl-netconf-util' version='${project.version}'>
48     <feature version='${project.version}'>odl-netconf-mapping-api</feature>
49     <bundle>mvn:org.opendaylight.yangtools/yang-model-api/{{VERSION}}</bundle>
50     <bundle>mvn:org.opendaylight.yangtools/yang-data-api/{{VERSION}}</bundle>
51     <bundle>mvn:org.opendaylight.netconf/netconf-util/{{VERSION}}</bundle>
52   </feature>
53
54   <feature name='odl-netconf-impl' version='${project.version}' description="OpenDaylight :: Netconf :: Impl">
55     <bundle>mvn:org.opendaylight.controller/yang-jmx-generator/{{VERSION}}</bundle>
56     <feature version='${project.version}'>odl-netconf-api</feature>
57     <feature version='${project.version}'>odl-netconf-mapping-api</feature>
58     <feature version='${project.version}'>odl-netconf-util</feature>
59     <feature version='${project.version}'>odl-netconf-netty-util</feature>
60     <!-- Netconf server without config connector is just an empty shell -->
61     <feature version='${project.version}'>odl-config-netconf-connector</feature>
62     <!-- Netconf will not provide schemas without monitoring -->
63     <bundle>mvn:org.opendaylight.controller/config-manager-facade-xml/{{VERSION}}</bundle>
64     <feature version='${project.version}'>odl-netconf-monitoring</feature>
65     <feature version='${project.version}'>odl-netconf-notifications-impl</feature>
66     <bundle>mvn:org.opendaylight.netconf/netconf-impl/{{VERSION}}</bundle>
67   </feature>
68
69   <feature name='odl-config-netconf-connector' version='${project.version}' description="OpenDaylight :: Netconf :: Connector">
70     <bundle>mvn:org.opendaylight.controller/yang-jmx-generator/{{VERSION}}</bundle>
71     <bundle>mvn:org.opendaylight.controller/config-manager-facade-xml/{{VERSION}}</bundle>
72     <feature version='${config.version}'>odl-config-manager</feature>
73     <feature version='${project.version}'>odl-netconf-netty-util</feature>
74     <bundle>mvn:org.opendaylight.netconf/netconf-impl/{{VERSION}}</bundle>
75     <feature version='${project.version}'>odl-netconf-notifications-api</feature>
76     <bundle>mvn:org.opendaylight.netconf/netconf-notifications-impl/{{VERSION}}</bundle>
77     <bundle>mvn:org.opendaylight.netconf/config-netconf-connector/{{VERSION}}</bundle>
78   </feature>
79
80   <feature name='odl-netconf-netty-util' version='${project.version}' description="OpenDaylight :: Netconf :: Netty Util">
81     <feature version='${project.version}'>odl-netconf-api</feature>
82     <feature version='${project.version}'>odl-netconf-mapping-api</feature>
83     <feature version='${project.version}'>odl-netconf-util</feature>
84     <feature version='[4.0.30,4.1.0)'>odl-netty</feature>
85     <bundle>mvn:org.opendaylight.netconf/netconf-netty-util/{{VERSION}}</bundle>
86     <bundle>mvn:org.bouncycastle/bcpkix-jdk15on/{{VERSION}}</bundle>
87     <bundle>mvn:org.bouncycastle/bcprov-jdk15on/{{VERSION}}</bundle>
88     <bundle>mvn:org.apache.sshd/sshd-core/{{VERSION}}</bundle>
89     <bundle>mvn:openexi/nagasena/{{VERSION}}</bundle>
90   </feature>
91
92   <feature name='odl-netconf-client' version='${project.version}' description="OpenDaylight :: Netconf :: Client">
93     <feature version='${config.version}'>odl-config-all</feature>
94     <feature version='${project.version}'>odl-netconf-netty-util</feature>
95     <bundle>mvn:org.opendaylight.netconf/netconf-client/{{VERSION}}</bundle>
96     <bundle>mvn:org.opendaylight.netconf/netconf-config-dispatcher/{{VERSION}}</bundle>
97     <configfile finalname='${config.configfile.directory}/${config.netconf.client.configfile}'>mvn:org.opendaylight.netconf/netconf-config/{{VERSION}}/xml/config</configfile>
98   </feature>
99
100   <feature name='odl-netconf-monitoring' version='${project.version}' description="OpenDaylight :: Netconf :: Monitoring">
101     <feature version='${project.version}'>odl-netconf-util</feature>
102     <bundle>mvn:org.opendaylight.netconf/netconf-monitoring/{{VERSION}}</bundle>
103   </feature>
104
105   <feature name='odl-netconf-notifications-api' version='${project.version}' description="OpenDaylight :: Netconf :: Notification :: Api">
106     <feature version='${config.version}'>odl-config-manager-facade-xml</feature>
107     <feature version='${project.version}'>odl-netconf-api</feature>
108     <bundle>mvn:org.opendaylight.netconf/netconf-notifications-api/{{VERSION}}</bundle>
109   </feature>
110
111   <feature name='odl-netconf-notifications-impl' version='${project.version}' description="OpenDaylight :: Netconf :: Monitoring :: Impl">
112     <feature version='${project.version}'>odl-netconf-notifications-api</feature>
113     <feature version='${project.version}'>odl-netconf-util</feature>
114     <bundle>mvn:org.opendaylight.netconf/netconf-notifications-impl/{{VERSION}}</bundle>
115   </feature>
116
117   <feature name='odl-netconf-ssh' version='${project.version}' description="OpenDaylight :: Netconf Connector :: SSH">
118     <feature version='${project.version}'>odl-netconf-tcp</feature>
119     <!-- FIXME: This introduces cycle between projects, which makes version updates
120                 harder. Should be moved to different.
121     -->
122     <feature version='${project.version}'>odl-aaa-netconf-plugin</feature>
123     <bundle>mvn:org.opendaylight.netconf/netconf-ssh/{{VERSION}}</bundle>
124   </feature>
125
126   <feature name='odl-netconf-tcp' version='${project.version}' description="OpenDaylight :: Netconf Connector :: TCP">
127     <feature version='${project.version}'>odl-netconf-impl</feature>
128     <feature version='${config.version}'>odl-config-netty</feature>
129     <bundle>mvn:org.opendaylight.netconf/netconf-tcp/{{VERSION}}</bundle>
130   </feature>
131
132   <feature name='odl-netconf-mdsal' version='${controller.mdsal.version}' description="OpenDaylight :: Netconf :: Mdsal">
133     <feature version='${config.version}'>odl-config-all</feature>
134     <feature version='${config.version}'>odl-config-netty</feature>
135     <feature version='${project.version}'>odl-netconf-all</feature>
136     <feature version='${project.version}'>odl-netconf-tcp</feature>
137     <feature version='${project.version}'>odl-netconf-ssh</feature>
138     <feature version='${project.version}'>odl-netconf-client</feature>
139     <feature version='${controller.mdsal.version}'>odl-mdsal-broker</feature>
140     <bundle>mvn:org.opendaylight.netconf/mdsal-netconf-notification/{{VERSION}}</bundle>
141     <bundle>mvn:org.opendaylight.netconf/mdsal-netconf-connector/{{VERSION}}</bundle>
142     <bundle>mvn:org.opendaylight.netconf/mdsal-netconf-monitoring/{{VERSION}}</bundle>
143     <configfile finalname='${config.configfile.directory}/${config.netconf.mdsal.configfile}'>mvn:org.opendaylight.netconf/netconf-mdsal-config/{{VERSION}}/xml/config</configfile>
144   </feature>
145
146   <feature name='odl-aaa-netconf-plugin' description='OpenDaylight :: AAA :: ODL NETCONF Plugin'
147            version='${project.version}'>
148     <feature version='${config.version}'>odl-config-api</feature>
149     <bundle>mvn:org.opendaylight.netconf/netconf-auth/{{VERSION}}</bundle>
150     <feature version='${aaa.version}'>odl-aaa-authn</feature>
151     <bundle>mvn:org.opendaylight.netconf/aaa-authn-odl-plugin/{{VERSION}}</bundle>
152   </feature>
153
154   <feature name='odl-aaa-netconf-plugin-no-cluster'
155            description='OpenDaylight :: AAA :: ODL NETCONF Plugin - NO CLUSTER'
156            version='${project.version}'>
157     <feature version='${config.version}'>odl-config-api</feature>
158     <bundle>mvn:org.opendaylight.netconf/netconf-auth/{{VERSION}}</bundle>
159     <feature version='${aaa.version}'>odl-aaa-authn-no-cluster</feature>
160     <bundle>mvn:org.opendaylight.netconf/aaa-authn-odl-plugin/{{VERSION}}</bundle>
161   </feature>
162 </features>