Fix missing dependencies in opendaylight-startup archetype
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / __artifactId__-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} and others. All rights reserved.
7 This program and the accompanying materials are made available under the
8 terms of the Eclipse Public License v1.0 which accompanies this distribution,
9 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
10 -->
11 <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">
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>features-parent</artifactId>
15     <version>1.5.0-SNAPSHOT</version>
16   </parent>
17   <groupId>${groupId}</groupId>
18   <artifactId>${artifactId}-features</artifactId>
19   <version>${version}</version>
20   <name>${project.artifactId}</name>
21   <modelVersion>4.0.0</modelVersion>
22   <prerequisites>
23     <maven>3.1.1</maven>
24   </prerequisites>
25   <properties>
26     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
27     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
28   </properties>
29   <dependencyManagement>
30     <dependencies>
31       <!-- project specific dependencies -->
32       <dependency>
33         <groupId>org.opendaylight.controller</groupId>
34         <artifactId>mdsal-artifacts</artifactId>
35         <version>${mdsal.version}</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41   <dependencies>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>features-yangtools</artifactId>
45       <classifier>features</classifier>
46       <version>${yangtools.version}</version>
47       <type>xml</type>
48       <scope>runtime</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>features-mdsal</artifactId>
53       <classifier>features</classifier>
54       <version>${mdsal.version}</version>
55       <type>xml</type>
56       <scope>runtime</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>features-restconf</artifactId>
61       <classifier>features</classifier>
62       <version>${mdsal.version}</version>
63       <type>xml</type>
64       <scope>runtime</scope>
65     </dependency>
66     <dependency>
67       <groupId>${symbol_dollar}{groupId}</groupId>
68       <artifactId>${artifactId}-impl</artifactId>
69       <version>${symbol_dollar}{project.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>${symbol_dollar}{groupId}</groupId>
73       <artifactId>${artifactId}-api</artifactId>
74       <version>${symbol_dollar}{project.version}</version>
75     </dependency>
76   </dependencies>
77 </project>