Bug 6106: Prevent flood of quarantine messages
[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 © ${copyrightYear} ${copyright} and others. All rights reserved.
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/{{VERSION}}/xml/features</repository>
17   <repository>mvn:org.opendaylight.controller/features-mdsal/{{VERSION}}/xml/features</repository>
18   <repository>mvn:org.opendaylight.mdsal.model/features-mdsal-model/{{VERSION}}/xml/features</repository>
19   <repository>mvn:org.opendaylight.netconf/features-restconf/{{VERSION}}/xml/features</repository>
20   <repository>mvn:org.opendaylight.dlux/features-dlux/{{VERSION}}/xml/features</repository>
21   <feature name='odl-${artifactId}-api' version='${symbol_dollar}{project.version}' description='OpenDaylight :: ${artifactId} :: api'>
22     <feature version='${symbol_dollar}{mdsal.model.version}'>odl-mdsal-models</feature>
23     <bundle>mvn:${groupId}/${artifactId}-api/{{VERSION}}</bundle>
24   </feature>
25   <feature name='odl-${artifactId}' version='${symbol_dollar}{project.version}' description='OpenDaylight :: ${artifactId}'>
26     <feature version='${symbol_dollar}{mdsal.version}'>odl-mdsal-broker</feature>
27     <feature version='${symbol_dollar}{project.version}'>odl-${artifactId}-api</feature>
28     <bundle>mvn:${groupId}/${artifactId}-impl/{{VERSION}}</bundle>
29     <configfile finalname="${configfile.directory}/${artifactId}.xml">mvn:${groupId}/${artifactId}-impl/{{VERSION}}/xml/config</configfile>
30   </feature>
31   <feature name='odl-${artifactId}-rest' version='${symbol_dollar}{project.version}' description='OpenDaylight :: ${artifactId} :: REST'>
32     <feature version="${symbol_dollar}{project.version}">odl-${artifactId}</feature>
33     <feature version="${symbol_dollar}{restconf.version}">odl-restconf</feature>
34   </feature>
35   <feature name='odl-${artifactId}-ui' version='${symbol_dollar}{project.version}' description='OpenDaylight :: ${artifactId} :: UI'>
36     <feature version="${symbol_dollar}{project.version}">odl-${artifactId}-rest</feature>
37     <feature version="${symbol_dollar}{restconf.version}">odl-mdsal-apidocs</feature>
38     <feature version="${symbol_dollar}{mdsal.version}">odl-mdsal-xsql</feature>
39     <feature version="${symbol_dollar}{dlux.version}">odl-dlux-yangui</feature>
40   </feature>
41
42 </features>