added modules to features and nexthopmgr updates.
[vpnservice.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>features-parent</artifactId>
12     <version>1.5.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.vpnservice</groupId>
16   <artifactId>vpnservice-features</artifactId>
17   <version>1.0-SNAPSHOT</version>
18   <name>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
25     <openflowplugin.version>0.1.0-SNAPSHOT</openflowplugin.version>
26     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
27     <vpnmanager.version>0.0.1-SNAPSHOT</vpnmanager.version>
28     <interfacemgr.version>0.0.1-SNAPSHOT</interfacemgr.version>
29     <nexthopmgr.version>0.0.1-SNAPSHOT</nexthopmgr.version>
30     <fibmanager.version>0.0.1-SNAPSHOT</fibmanager.version>
31     <idmanager.version>0.0.1-SNAPSHOT</idmanager.version>
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     </dependencies>
44   </dependencyManagement>
45   <dependencies>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>features-yangtools</artifactId>
49       <classifier>features</classifier>
50       <version>${yangtools.version}</version>
51       <type>xml</type>
52       <scope>runtime</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>features-mdsal</artifactId>
57       <classifier>features</classifier>
58       <version>${mdsal.version}</version>
59       <type>xml</type>
60       <scope>runtime</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.openflowplugin</groupId>
64       <artifactId>features-openflowplugin</artifactId>
65       <classifier>features</classifier>
66       <version>${openflowplugin.version}</version>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>features-restconf</artifactId>
73       <classifier>features</classifier>
74       <version>${mdsal.version}</version>
75       <type>xml</type>
76       <scope>runtime</scope>
77     </dependency>
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>vpnmanager-impl</artifactId>
81       <version>${vpnmanager.version}</version>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>vpnmanager-impl</artifactId>
86       <version>${vpnmanager.version}</version>
87       <classifier>config</classifier>
88       <type>xml</type>
89     </dependency>
90     <dependency>
91       <groupId>${project.groupId}</groupId>
92       <artifactId>interfacemgr-impl</artifactId>
93       <version>${interfacemgr.version}</version>
94     </dependency>
95     <dependency>
96       <groupId>${project.groupId}</groupId>
97       <artifactId>interfacemgr-impl</artifactId>
98       <version>${interfacemgr.version}</version>
99       <classifier>config</classifier>
100       <type>xml</type>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>interfacemgr-api</artifactId>
105       <version>${interfacemgr.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>vpnmanager-api</artifactId>
110       <version>${vpnmanager.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>${project.groupId}</groupId>
114       <artifactId>bgpmanager-impl</artifactId>
115       <version>${project.version}</version>
116     </dependency>
117     <dependency>
118       <groupId>${project.groupId}</groupId>
119       <artifactId>bgpmanager-impl</artifactId>
120       <version>${project.version}</version>
121       <classifier>config</classifier>
122       <type>xml</type>
123     </dependency>
124     <dependency>
125       <groupId>${project.groupId}</groupId>
126       <artifactId>bgpmanager-api</artifactId>
127       <version>${project.version}</version>
128     </dependency>
129     <dependency>
130       <groupId>${project.groupId}</groupId>
131       <artifactId>model-bgp</artifactId>
132       <version>2013.07.15.7-SNAPSHOT</version>
133     </dependency>
134         <dependency>
135       <groupId>${project.groupId}</groupId>
136       <artifactId>nexthopmgr-impl</artifactId>
137       <version>${nexthopmgr.version}</version>
138     </dependency>
139     <dependency>
140       <groupId>${project.groupId}</groupId>
141       <artifactId>nexthopmgr-impl</artifactId>
142       <version>${nexthopmgr.version}</version>
143       <classifier>config</classifier>
144       <type>xml</type>
145     </dependency>
146     <dependency>
147       <groupId>${project.groupId}</groupId>
148       <artifactId>nexthopmgr-api</artifactId>
149       <version>${nexthopmgr.version}</version>
150     </dependency>
151         <dependency>
152       <groupId>${project.groupId}</groupId>
153       <artifactId>fibmanager-impl</artifactId>
154       <version>${fibmanager.version}</version>
155     </dependency>
156     <dependency>
157       <groupId>${project.groupId}</groupId>
158       <artifactId>fibmanager-impl</artifactId>
159       <version>${fibmanager.version}</version>
160       <classifier>config</classifier>
161       <type>xml</type>
162     </dependency>
163     <dependency>
164       <groupId>${project.groupId}</groupId>
165       <artifactId>fibmanager-api</artifactId>
166       <version>${fibmanager.version}</version>
167     </dependency>
168     <dependency>
169       <groupId>${project.groupId}</groupId>
170       <artifactId>idmanager-impl</artifactId>
171       <version>${idmanager.version}</version>
172     </dependency>
173     <dependency>
174       <groupId>${project.groupId}</groupId>
175       <artifactId>idmanager-impl</artifactId>
176       <version>${idmanager.version}</version>
177       <classifier>config</classifier>
178       <type>xml</type>
179     </dependency>
180     <dependency>
181       <groupId>${project.groupId}</groupId>
182       <artifactId>idmanager-api</artifactId>
183       <version>${idmanager.version}</version>
184     </dependency>
185     <dependency>
186       <groupId>org.apache.thrift</groupId>
187       <artifactId>libthrift</artifactId>
188       <version>0.9.1</version>
189     </dependency>
190   </dependencies>
191 </project>