155f014fbbd76eb3c302b8bb0bbfb9d9240a8221
[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.7.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.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
29     <mdsal.version>1.4.0-SNAPSHOT</mdsal.version>
30     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
31     <yangtools.version>0.9.0-SNAPSHOT</yangtools.version>
32     <dlux.version>0.4.0-SNAPSHOT</dlux.version>
33     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
34   </properties>
35   <dependencyManagement>
36     <dependencies>
37       <!-- project specific dependencies -->
38       <dependency>
39         <groupId>org.opendaylight.controller</groupId>
40         <artifactId>mdsal-artifacts</artifactId>
41         <version>${mdsal.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45       <dependency>
46         <groupId>org.opendaylight.netconf</groupId>
47         <artifactId>restconf-artifacts</artifactId>
48         <version>${restconf.version}</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52       <dependency>
53         <groupId>org.opendaylight.yangtools</groupId>
54         <artifactId>yangtools-artifacts</artifactId>
55         <version>${yangtools.version}</version>
56         <type>pom</type>
57         <scope>import</scope>
58       </dependency>
59     </dependencies>
60   </dependencyManagement>
61   <dependencies>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>features-yangtools</artifactId>
65       <classifier>features</classifier>
66       <type>xml</type>
67       <scope>runtime</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.mdsal.model</groupId>
71       <artifactId>features-mdsal-model</artifactId>
72       <version>${mdsal.model.version}</version>
73       <classifier>features</classifier>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>features-mdsal</artifactId>
80       <classifier>features</classifier>
81       <type>xml</type>
82       <scope>runtime</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.netconf</groupId>
86       <artifactId>features-restconf</artifactId>
87       <classifier>features</classifier>
88       <type>xml</type>
89       <scope>runtime</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.dlux</groupId>
93       <artifactId>features-dlux</artifactId>
94       <classifier>features</classifier>
95       <version>${dlux.version}</version>
96       <type>xml</type>
97       <scope>runtime</scope>
98     </dependency>
99     <dependency>
100       <groupId>${symbol_dollar}{project.groupId}</groupId>
101       <artifactId>${artifactId}-impl</artifactId>
102       <version>${symbol_dollar}{project.version}</version>
103     </dependency>
104     <dependency>
105       <groupId>${symbol_dollar}{project.groupId}</groupId>
106       <artifactId>${artifactId}-impl</artifactId>
107       <version>${symbol_dollar}{project.version}</version>
108       <type>xml</type>
109       <classifier>config</classifier>
110     </dependency>
111     <dependency>
112       <groupId>${symbol_dollar}{project.groupId}</groupId>
113       <artifactId>${artifactId}-api</artifactId>
114       <version>${symbol_dollar}{project.version}</version>
115     </dependency>
116   </dependencies>
117 </project>