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