Bug 8735: Remove dlux deps from startup archetype
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / features / pom.xml
1 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
4 <?xml version="1.0" encoding="UTF-8"?>
5 <!--
6 Copyright © ${copyrightYear} ${copyright} and others. All rights reserved.
7
8 This program and the accompanying materials are made available under the
9 terms of the Eclipse Public License v1.0 which accompanies this distribution,
10 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
11 -->
12 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14
15   <modelVersion>4.0.0</modelVersion>
16
17   <parent>
18     <groupId>org.opendaylight.odlparent</groupId>
19     <artifactId>features-parent</artifactId>
20     <version>2.0.0</version>
21     <relativePath/>
22   </parent>
23
24   <groupId>${groupId}</groupId>
25   <artifactId>${artifactId}-features</artifactId>
26   <version>${version}</version>
27   <!-- <name> formatting is used by autorelease to parse and notify projects on
28        build failure. Please do not modify this unless you have a good reason. -->
29   <name>ODL :: ${groupId} :: ${project.artifactId}</name>
30
31   <properties>
32     <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
33     <mdsal.version>1.6.0-SNAPSHOT</mdsal.version>
34     <restconf.version>1.6.0-SNAPSHOT</restconf.version>
35     <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
36     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
37   </properties>
38
39   <dependencyManagement>
40     <dependencies>
41       <!-- project specific dependencies -->
42       <dependency>
43         <groupId>org.opendaylight.controller</groupId>
44         <artifactId>mdsal-artifacts</artifactId>
45         <version>${mdsal.version}</version>
46         <type>pom</type>
47         <scope>import</scope>
48       </dependency>
49       <dependency>
50         <groupId>org.opendaylight.netconf</groupId>
51         <artifactId>restconf-artifacts</artifactId>
52         <version>${restconf.version}</version>
53         <type>pom</type>
54         <scope>import</scope>
55       </dependency>
56       <dependency>
57         <groupId>org.opendaylight.yangtools</groupId>
58         <artifactId>yangtools-artifacts</artifactId>
59         <version>${yangtools.version}</version>
60         <type>pom</type>
61         <scope>import</scope>
62       </dependency>
63     </dependencies>
64   </dependencyManagement>
65
66   <dependencies>
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>features-yangtools</artifactId>
70       <classifier>features</classifier>
71       <type>xml</type>
72       <scope>runtime</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.mdsal.model</groupId>
76       <artifactId>features-mdsal-model</artifactId>
77       <version>${mdsal.model.version}</version>
78       <classifier>features</classifier>
79       <type>xml</type>
80       <scope>runtime</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>features-mdsal</artifactId>
85       <classifier>features</classifier>
86       <type>xml</type>
87       <scope>runtime</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.netconf</groupId>
91       <artifactId>features-restconf</artifactId>
92       <classifier>features</classifier>
93       <type>xml</type>
94       <scope>runtime</scope>
95     </dependency>
96     <dependency>
97       <groupId>${symbol_dollar}{project.groupId}</groupId>
98       <artifactId>${artifactId}-impl</artifactId>
99       <version>${symbol_dollar}{project.version}</version>
100     </dependency>
101     <dependency>
102       <groupId>${symbol_dollar}{project.groupId}</groupId>
103       <artifactId>${artifactId}-api</artifactId>
104       <version>${symbol_dollar}{project.version}</version>
105     </dependency>
106     <dependency>
107       <groupId>${symbol_dollar}{project.groupId}</groupId>
108       <artifactId>${artifactId}-cli</artifactId>
109       <version>${symbol_dollar}{project.version}</version>
110     </dependency>
111   </dependencies>
112 </project>