9c4d453a1c8c9cebe7109a65e52d9f2a4468fd99
[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   <parent>
14     <groupId>org.opendaylight.odlparent</groupId>
15     <artifactId>features-parent</artifactId>
16     <version>1.6.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19   <groupId>${groupId}</groupId>
20   <artifactId>${artifactId}-features</artifactId>
21   <version>${version}</version>
22   <name>${project.artifactId}</name>
23   <modelVersion>4.0.0</modelVersion>
24   <prerequisites>
25     <maven>3.1.1</maven>
26   </prerequisites>
27   <properties>
28     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
29     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
30     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
31     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
32     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
33   </properties>
34   <dependencyManagement>
35     <dependencies>
36       <!-- project specific dependencies -->
37       <dependency>
38         <groupId>org.opendaylight.controller</groupId>
39         <artifactId>mdsal-artifacts</artifactId>
40         <version>${mdsal.version}</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44       <dependency>
45         <groupId>org.opendaylight.netconf</groupId>
46         <artifactId>restconf-artifacts</artifactId>
47         <version>${restconf.version}</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51     </dependencies>
52   </dependencyManagement>
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.yangtools</groupId>
56       <artifactId>features-yangtools</artifactId>
57       <classifier>features</classifier>
58       <version>${yangtools.version}</version>
59       <type>xml</type>
60       <scope>runtime</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>features-mdsal</artifactId>
65       <classifier>features</classifier>
66       <version>${mdsal.version}</version>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.netconf</groupId>
72       <artifactId>features-restconf</artifactId>
73       <classifier>features</classifier>
74       <version>${restconf.version}</version>
75       <type>xml</type>
76       <scope>runtime</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.dlux</groupId>
80       <artifactId>features-dlux</artifactId>
81       <classifier>features</classifier>
82       <version>${dlux.version}</version>
83       <type>xml</type>
84       <scope>runtime</scope>
85     </dependency>
86     <dependency>
87       <groupId>${symbol_dollar}{project.groupId}</groupId>
88       <artifactId>${artifactId}-impl</artifactId>
89       <version>${symbol_dollar}{project.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>${symbol_dollar}{project.groupId}</groupId>
93       <artifactId>${artifactId}-impl</artifactId>
94       <version>${symbol_dollar}{project.version}</version>
95       <type>xml</type>
96       <classifier>config</classifier>
97     </dependency>
98     <dependency>
99       <groupId>${symbol_dollar}{project.groupId}</groupId>
100       <artifactId>${artifactId}-api</artifactId>
101       <version>${symbol_dollar}{project.version}</version>
102     </dependency>
103   </dependencies>
104 </project>