ccd1f57206094086f89471cc2f3b9cd53ce78eaf
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13   <modelVersion>4.0.0</modelVersion>
14
15   <parent>
16     <groupId>org.opendaylight.odlparent</groupId>
17     <artifactId>features-parent</artifactId>
18     <version>1.8.0-SNAPSHOT</version>
19     <relativePath/>
20   </parent>
21
22   <groupId>${groupId}</groupId>
23   <artifactId>${artifactId}-features</artifactId>
24   <version>${version}</version>
25   <!-- <name> formatting is used by autorelease to parse and notify projects on
26        build failure. Please do not modify this unless you have a good reason. -->
27   <name>ODL :: ${groupId} :: ${project.artifactId}</name>
28
29   <properties>
30     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
31     <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
32     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
33     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
34     <dluxapps.version>0.5.0-SNAPSHOT</dluxapps.version>
35     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
36   </properties>
37
38   <dependencyManagement>
39     <dependencies>
40       <!-- project specific dependencies -->
41       <dependency>
42         <groupId>org.opendaylight.controller</groupId>
43         <artifactId>mdsal-artifacts</artifactId>
44         <version>${mdsal.version}</version>
45         <type>pom</type>
46         <scope>import</scope>
47       </dependency>
48       <dependency>
49         <groupId>org.opendaylight.netconf</groupId>
50         <artifactId>restconf-artifacts</artifactId>
51         <version>${restconf.version}</version>
52         <type>pom</type>
53         <scope>import</scope>
54       </dependency>
55       <dependency>
56         <groupId>org.opendaylight.yangtools</groupId>
57         <artifactId>yangtools-artifacts</artifactId>
58         <version>${yangtools.version}</version>
59         <type>pom</type>
60         <scope>import</scope>
61       </dependency>
62     </dependencies>
63   </dependencyManagement>
64
65   <dependencies>
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>features-yangtools</artifactId>
69       <classifier>features</classifier>
70       <type>xml</type>
71       <scope>runtime</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.mdsal.model</groupId>
75       <artifactId>features-mdsal-model</artifactId>
76       <version>${mdsal.model.version}</version>
77       <classifier>features</classifier>
78       <type>xml</type>
79       <scope>runtime</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>features-mdsal</artifactId>
84       <classifier>features</classifier>
85       <type>xml</type>
86       <scope>runtime</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.netconf</groupId>
90       <artifactId>features-restconf</artifactId>
91       <classifier>features</classifier>
92       <type>xml</type>
93       <scope>runtime</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.dluxapps</groupId>
97       <artifactId>features-dluxapps</artifactId>
98       <classifier>features</classifier>
99       <version>${dluxapps.version}</version>
100       <type>xml</type>
101       <scope>runtime</scope>
102     </dependency>
103     <dependency>
104       <groupId>${symbol_dollar}{project.groupId}</groupId>
105       <artifactId>${artifactId}-impl</artifactId>
106       <version>${symbol_dollar}{project.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>${symbol_dollar}{project.groupId}</groupId>
110       <artifactId>${artifactId}-api</artifactId>
111       <version>${symbol_dollar}{project.version}</version>
112     </dependency>
113     <dependency>
114       <groupId>${symbol_dollar}{project.groupId}</groupId>
115       <artifactId>${artifactId}-cli</artifactId>
116       <version>${symbol_dollar}{project.version}</version>
117     </dependency>
118   </dependencies>
119 </project>