Bug 4202 - Migrate archetypes to use MD-SAL Project
[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.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
29     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
30     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
31     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
32     <dlux.version>0.3.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     </dependencies>
53   </dependencyManagement>
54   <dependencies>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>features-yangtools</artifactId>
58       <classifier>features</classifier>
59       <version>${yangtools.version}</version>
60       <type>xml</type>
61       <scope>runtime</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.mdsal.model</groupId>
65       <artifactId>features-mdsal-model</artifactId>
66       <version>${mdsal.model.version}</version>
67       <classifier>features</classifier>
68       <type>xml</type>
69       <scope>runtime</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>features-mdsal</artifactId>
74       <classifier>features</classifier>
75       <version>${mdsal.version}</version>
76       <type>xml</type>
77       <scope>runtime</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.netconf</groupId>
81       <artifactId>features-restconf</artifactId>
82       <classifier>features</classifier>
83       <version>${restconf.version}</version>
84       <type>xml</type>
85       <scope>runtime</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.dlux</groupId>
89       <artifactId>features-dlux</artifactId>
90       <classifier>features</classifier>
91       <version>${dlux.version}</version>
92       <type>xml</type>
93       <scope>runtime</scope>
94     </dependency>
95     <dependency>
96       <groupId>${symbol_dollar}{project.groupId}</groupId>
97       <artifactId>${artifactId}-impl</artifactId>
98       <version>${symbol_dollar}{project.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>${symbol_dollar}{project.groupId}</groupId>
102       <artifactId>${artifactId}-impl</artifactId>
103       <version>${symbol_dollar}{project.version}</version>
104       <type>xml</type>
105       <classifier>config</classifier>
106     </dependency>
107     <dependency>
108       <groupId>${symbol_dollar}{project.groupId}</groupId>
109       <artifactId>${artifactId}-api</artifactId>
110       <version>${symbol_dollar}{project.version}</version>
111     </dependency>
112   </dependencies>
113 </project>