BUG 2676 : Use custom client-dispatcher when configured
[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.5.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.2.0-SNAPSHOT</mdsal.version>
28     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
29   </properties>
30   <dependencyManagement>
31     <dependencies>
32       <!-- project specific dependencies -->
33       <dependency>
34         <groupId>org.opendaylight.controller</groupId>
35         <artifactId>mdsal-artifacts</artifactId>
36         <version>${mdsal.version}</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40     </dependencies>
41   </dependencyManagement>
42   <dependencies>
43     <dependency>
44       <groupId>org.opendaylight.yangtools</groupId>
45       <artifactId>features-yangtools</artifactId>
46       <classifier>features</classifier>
47       <version>${yangtools.version}</version>
48       <type>xml</type>
49       <scope>runtime</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>features-mdsal</artifactId>
54       <classifier>features</classifier>
55       <version>${mdsal.version}</version>
56       <type>xml</type>
57       <scope>runtime</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>features-restconf</artifactId>
62       <classifier>features</classifier>
63       <version>${mdsal.version}</version>
64       <type>xml</type>
65       <scope>runtime</scope>
66     </dependency>
67     <dependency>
68       <groupId>${symbol_dollar}{project.groupId}</groupId>
69       <artifactId>${artifactId}-impl</artifactId>
70       <version>${symbol_dollar}{project.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>${symbol_dollar}{project.groupId}</groupId>
74       <artifactId>${artifactId}-api</artifactId>
75       <version>${symbol_dollar}{project.version}</version>
76     </dependency>
77   </dependencies>
78 </project>