Migrate archetypes restconf dependencies
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / features / src / main / features / features.xml
1 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
4 <?xml version="1.0" encoding="UTF-8"?>
5 <!-- vi: set et smarttab sw=4 tabstop=4: -->
6 <!--
7 ${copyright}
8
9 This program and the accompanying materials are made available under the
10 terms of the Eclipse Public License v1.0 which accompanies this distribution,
11 and is available at http://www.eclipse.org/legal/epl-v10.html
12 -->
13 <features name="odl-${artifactId}-${symbol_dollar}{project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"
14   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15   xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0">
16   <repository>mvn:org.opendaylight.yangtools/features-yangtools/${symbol_dollar}{yangtools.version}/xml/features</repository>
17   <repository>mvn:org.opendaylight.controller/features-mdsal/${symbol_dollar}{mdsal.version}/xml/features</repository>
18   <repository>mvn:org.opendaylight.netconf/features-restconf/${symbol_dollar}{restconf.version}/xml/features</repository>
19   <repository>mvn:org.opendaylight.dlux/features-dlux/${symbol_dollar}{dlux.version}/xml/features</repository>
20   <feature name='odl-${artifactId}-api' version='${symbol_dollar}{project.version}' description='OpenDaylight :: ${artifactId} :: api'>
21     <feature version='${symbol_dollar}{yangtools.version}'>odl-yangtools-models</feature>
22     <bundle>mvn:${groupId}/${artifactId}-api/${symbol_dollar}{project.version}</bundle>
23   </feature>
24   <feature name='odl-${artifactId}' version='${symbol_dollar}{project.version}' description='OpenDaylight :: ${artifactId}'>
25     <feature version='${symbol_dollar}{mdsal.version}'>odl-mdsal-broker</feature>
26     <feature version='${symbol_dollar}{project.version}'>odl-${artifactId}-api</feature>
27     <bundle>mvn:${groupId}/${artifactId}-impl/${symbol_dollar}{project.version}</bundle>
28     <configfile finalname="${configfile.directory}/${artifactId}.xml">mvn:${groupId}/${artifactId}-impl/${symbol_dollar}{project.version}/xml/config</configfile>
29   </feature>
30   <feature name='odl-${artifactId}-rest' version='${symbol_dollar}{project.version}' description='OpenDaylight :: ${artifactId} :: REST'>
31     <feature version="${symbol_dollar}{project.version}">odl-${artifactId}</feature>
32     <feature version="${symbol_dollar}{restconf.version}">odl-restconf</feature>
33   </feature>
34   <feature name='odl-${artifactId}-ui' version='${symbol_dollar}{project.version}' description='OpenDaylight :: ${artifactId} :: UI'>
35     <feature version="${symbol_dollar}{project.version}">odl-${artifactId}-rest</feature>
36     <feature version="${symbol_dollar}{restconf.version}">odl-mdsal-apidocs</feature>
37     <feature version="${symbol_dollar}{mdsal.version}">odl-mdsal-xsql</feature>
38     <feature version="${symbol_dollar}{dlux.version}">odl-dlux-yangui</feature>
39   </feature>
40
41 </features>