60a91383c44d3afed94753c0092087cb8b0d3213
[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     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
29     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
30     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
31     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
32   </properties>
33   <dependencyManagement>
34     <dependencies>
35       <!-- project specific dependencies -->
36       <dependency>
37         <groupId>org.opendaylight.controller</groupId>
38         <artifactId>mdsal-artifacts</artifactId>
39         <version>${mdsal.version}</version>
40         <type>pom</type>
41         <scope>import</scope>
42       </dependency>
43       <dependency>
44         <groupId>org.opendaylight.netconf</groupId>
45         <artifactId>restconf-artifacts</artifactId>
46         <version>${restconf.version}</version>
47         <type>pom</type>
48         <scope>import</scope>
49       </dependency>
50     </dependencies>
51   </dependencyManagement>
52   <dependencies>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>features-yangtools</artifactId>
56       <classifier>features</classifier>
57       <version>${yangtools.version}</version>
58       <type>xml</type>
59       <scope>runtime</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>features-mdsal</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.netconf</groupId>
71       <artifactId>features-restconf</artifactId>
72       <classifier>features</classifier>
73       <version>${restconf.version}</version>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.dlux</groupId>
79       <artifactId>features-dlux</artifactId>
80       <classifier>features</classifier>
81       <version>${dlux.version}</version>
82       <type>xml</type>
83       <scope>runtime</scope>
84     </dependency>
85     <dependency>
86       <groupId>${symbol_dollar}{project.groupId}</groupId>
87       <artifactId>${artifactId}-impl</artifactId>
88       <version>${symbol_dollar}{project.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>${symbol_dollar}{project.groupId}</groupId>
92       <artifactId>${artifactId}-impl</artifactId>
93       <version>${symbol_dollar}{project.version}</version>
94       <type>xml</type>
95       <classifier>config</classifier>
96     </dependency>
97     <dependency>
98       <groupId>${symbol_dollar}{project.groupId}</groupId>
99       <artifactId>${artifactId}-api</artifactId>
100       <version>${symbol_dollar}{project.version}</version>
101     </dependency>
102   </dependencies>
103 </project>