Migration to use MD-SAL Project
[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.6.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.vpnservice</groupId>
16   <artifactId>vpnservice-features</artifactId>
17   <version>0.2.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.3.0-SNAPSHOT</mdsal.version>
25     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
26     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
27     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
28     <mdsal.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
29     <vpnservices.version>0.2.0-SNAPSHOT</vpnservices.version>
30     <mdsalutil.version>${vpnservices.version}</mdsalutil.version>
31     <vpnmanager.version>${vpnservices.version}</vpnmanager.version>
32     <interfacemgr.version>${vpnservices.version}</interfacemgr.version>
33     <nexthopmgr.version>${vpnservices.version}</nexthopmgr.version>
34     <fibmanager.version>${vpnservices.version}</fibmanager.version>
35     <idmanager.version>${vpnservices.version}</idmanager.version>
36   </properties>
37   <dependencyManagement>
38     <dependencies>
39       <!-- project specific dependencies -->
40       <dependency>
41         <groupId>org.opendaylight.controller</groupId>
42         <artifactId>mdsal-artifacts</artifactId>
43         <version>${mdsal.version}</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47       <dependency>
48         <groupId>org.opendaylight.netconf</groupId>
49         <artifactId>restconf-artifacts</artifactId>
50         <version>${restconf.version}</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54     </dependencies>
55   </dependencyManagement>
56   <dependencies>
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>features-yangtools</artifactId>
60       <classifier>features</classifier>
61       <version>${yangtools.version}</version>
62       <type>xml</type>
63       <scope>runtime</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>features-mdsal</artifactId>
68       <classifier>features</classifier>
69       <version>${mdsal.version}</version>
70       <type>xml</type>
71       <scope>runtime</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.mdsal.model</groupId>
75       <artifactId>features-mdsal-model</artifactId>
76       <version>${mdsal.model.version}</version>
77       <classifier>features</classifier>
78       <type>xml</type>
79       <scope>runtime</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.openflowplugin</groupId>
83       <artifactId>features-openflowplugin</artifactId>
84       <classifier>features</classifier>
85       <version>${openflowplugin.version}</version>
86       <type>xml</type>
87       <scope>runtime</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.netconf</groupId>
91       <artifactId>features-restconf</artifactId>
92       <classifier>features</classifier>
93       <version>${restconf.version}</version>
94       <type>xml</type>
95       <scope>runtime</scope>
96     </dependency>
97     <dependency>
98       <groupId>${project.groupId}</groupId>
99       <artifactId>vpnmanager-impl</artifactId>
100       <version>${vpnmanager.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>vpnmanager-impl</artifactId>
105       <version>${vpnmanager.version}</version>
106       <classifier>config</classifier>
107       <type>xml</type>
108     </dependency><dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>mdsalutil-impl</artifactId>
111       <version>${mdsalutil.version}</version>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>mdsalutil-impl</artifactId>
116       <version>${mdsalutil.version}</version>
117       <classifier>config</classifier>
118       <type>xml</type>
119     </dependency>
120     <dependency>
121       <groupId>${project.groupId}</groupId>
122       <artifactId>mdsalutil-api</artifactId>
123       <version>${mdsalutil.version}</version>
124     </dependency>
125     <dependency>
126       <groupId>${project.groupId}</groupId>
127       <artifactId>interfacemgr-impl</artifactId>
128       <version>${interfacemgr.version}</version>
129     </dependency>
130     <dependency>
131       <groupId>${project.groupId}</groupId>
132       <artifactId>interfacemgr-impl</artifactId>
133       <version>${interfacemgr.version}</version>
134       <classifier>config</classifier>
135       <type>xml</type>
136     </dependency>
137     <dependency>
138       <groupId>${project.groupId}</groupId>
139       <artifactId>interfacemgr-api</artifactId>
140       <version>${interfacemgr.version}</version>
141     </dependency>
142     <dependency>
143       <groupId>${project.groupId}</groupId>
144       <artifactId>vpnmanager-api</artifactId>
145       <version>${vpnmanager.version}</version>
146     </dependency>
147     <dependency>
148       <groupId>${project.groupId}</groupId>
149       <artifactId>bgpmanager-impl</artifactId>
150       <version>${vpnservices.version}</version>
151     </dependency>
152     <dependency>
153       <groupId>${project.groupId}</groupId>
154       <artifactId>bgpmanager-impl</artifactId>
155       <version>${vpnservices.version}</version>
156       <classifier>config</classifier>
157       <type>xml</type>
158     </dependency>
159     <dependency>
160       <groupId>${project.groupId}</groupId>
161       <artifactId>bgpmanager-api</artifactId>
162       <version>${vpnservices.version}</version>
163     </dependency>
164     <dependency>
165       <groupId>${project.groupId}</groupId>
166       <artifactId>model-bgp</artifactId>
167       <version>2013.07.15.8-SNAPSHOT</version>
168     </dependency>
169         <dependency>
170       <groupId>${project.groupId}</groupId>
171       <artifactId>nexthopmgr-impl</artifactId>
172       <version>${nexthopmgr.version}</version>
173     </dependency>
174     <dependency>
175       <groupId>${project.groupId}</groupId>
176       <artifactId>nexthopmgr-impl</artifactId>
177       <version>${nexthopmgr.version}</version>
178       <classifier>config</classifier>
179       <type>xml</type>
180     </dependency>
181     <dependency>
182       <groupId>${project.groupId}</groupId>
183       <artifactId>nexthopmgr-api</artifactId>
184       <version>${nexthopmgr.version}</version>
185     </dependency>
186         <dependency>
187       <groupId>${project.groupId}</groupId>
188       <artifactId>fibmanager-impl</artifactId>
189       <version>${fibmanager.version}</version>
190     </dependency>
191     <dependency>
192       <groupId>${project.groupId}</groupId>
193       <artifactId>fibmanager-impl</artifactId>
194       <version>${fibmanager.version}</version>
195       <classifier>config</classifier>
196       <type>xml</type>
197     </dependency>
198     <dependency>
199       <groupId>${project.groupId}</groupId>
200       <artifactId>fibmanager-api</artifactId>
201       <version>${fibmanager.version}</version>
202     </dependency>
203     <dependency>
204       <groupId>${project.groupId}</groupId>
205       <artifactId>idmanager-impl</artifactId>
206       <version>${idmanager.version}</version>
207     </dependency>
208     <dependency>
209       <groupId>${project.groupId}</groupId>
210       <artifactId>idmanager-impl</artifactId>
211       <version>${idmanager.version}</version>
212       <classifier>config</classifier>
213       <type>xml</type>
214     </dependency>
215     <dependency>
216       <groupId>${project.groupId}</groupId>
217       <artifactId>idmanager-api</artifactId>
218       <version>${idmanager.version}</version>
219     </dependency>
220     <dependency>
221       <groupId>org.apache.thrift</groupId>
222       <artifactId>libthrift</artifactId>
223       <version>0.9.1</version>
224     </dependency>
225   </dependencies>
226 </project>