Merge "Migrate restconf dependencies"
[ovsdb.git] / features / ovsdb / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>features-parent</artifactId>
17     <version>1.6.0-SNAPSHOT</version>
18     <relativePath></relativePath>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>features-ovsdb</artifactId>
23   <version>1.2.1-SNAPSHOT</version>
24   <packaging>jar</packaging>
25   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
26   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
27   <licenses>
28     <license>
29       <name>Eclipse Public License v1.0</name>
30       <url>http://www.eclipse.org/legal/epl-v10.html</url>
31     </license>
32   </licenses>
33   <developers>
34     <developer>
35       <name>Sam Hague</name>
36       <email>shague@gmail.com</email>
37       <url>https://github.com/shague</url>
38     </developer>
39   </developers>
40   <scm>
41     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <properties>
48     <dummy-console.version>1.3.0-SNAPSHOT</dummy-console.version>
49     <odl.karaf.base.version>1.6.0-SNAPSHOT</odl.karaf.base.version>
50     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
51     <io.netty.version>3.8.0.Final</io.netty.version>
52     <networkconfig.neutron.version>0.6.0-SNAPSHOT</networkconfig.neutron.version>
53     <ovsdb.library.version>1.2.1-SNAPSHOT</ovsdb.library.version>
54     <openstack.netvirt.version>1.2.1-SNAPSHOT</openstack.netvirt.version>
55     <openstack.netvirt.providers.version>1.2.1-SNAPSHOT</openstack.netvirt.providers.version>
56     <ovsdb.plugin.version>1.2.1-SNAPSHOT</ovsdb.plugin.version>
57     <ovsdb.plugin.compatibility.layer.version>1.2.1-SNAPSHOT</ovsdb.plugin.compatibility.layer.version>
58     <ovsdb.utils.servicehelper.version>1.2.1-SNAPSHOT</ovsdb.utils.servicehelper.version>
59     <plugin.shell.version>1.2.1-SNAPSHOT</plugin.shell.version>
60     <schema.hardwarevtep.version>1.2.1-SNAPSHOT</schema.hardwarevtep.version>
61     <schema.openvswitch.version>1.2.1-SNAPSHOT</schema.openvswitch.version>
62     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
63     <sal.version>0.10.0-SNAPSHOT</sal.version>
64     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
65     <dlux.core.version>0.3.0-SNAPSHOT</dlux.core.version>
66     <ovsdb.ui.version>0.1.0-SNAPSHOT</ovsdb.ui.version>
67     <config.version>0.4.0-SNAPSHOT</config.version>
68   </properties>
69
70   <dependencyManagement>
71     <dependencies>
72       <dependency>
73         <groupId>org.opendaylight.yangtools</groupId>
74         <artifactId>yangtools-artifacts</artifactId>
75         <version>${yangtools.version}</version>
76         <type>pom</type>
77         <scope>import</scope>
78       </dependency>
79       <dependency>
80         <groupId>org.opendaylight.controller</groupId>
81         <artifactId>mdsal-artifacts</artifactId>
82         <version>${mdsal.version}</version>
83         <type>pom</type>
84         <scope>import</scope>
85       </dependency>
86     </dependencies>
87   </dependencyManagement>
88   <dependencies>
89     <dependency>
90       <groupId>org.osgi</groupId>
91       <artifactId>org.osgi.compendium</artifactId>
92       <scope>provided</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.osgi</groupId>
96       <artifactId>org.osgi.core</artifactId>
97       <scope>provided</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.apache.felix</groupId>
101       <artifactId>org.apache.felix.dependencymanager</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>com.fasterxml.jackson.core</groupId>
105       <artifactId>jackson-annotations</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>com.fasterxml.jackson.core</groupId>
109       <artifactId>jackson-core</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>com.fasterxml.jackson.core</groupId>
113       <artifactId>jackson-databind</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>com.google.guava</groupId>
117       <artifactId>guava</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.apache.commons</groupId>
121       <artifactId>commons-lang3</artifactId>
122       <version>${commons.lang3.version}</version>
123     </dependency>
124     <dependency>
125       <groupId>io.netty</groupId>
126       <artifactId>netty</artifactId>
127       <version>${io.netty.version}</version>
128     </dependency>
129     <dependency>
130       <groupId>io.netty</groupId>
131       <artifactId>netty-all</artifactId>
132       <version>${netty.version}</version>
133     </dependency>
134     <dependency>
135       <groupId>io.netty</groupId>
136       <artifactId>netty-buffer</artifactId>
137       <version>${netty.version}</version>
138     </dependency>
139     <dependency>
140       <groupId>io.netty</groupId>
141       <artifactId>netty-codec</artifactId>
142       <version>${netty.version}</version>
143     </dependency>
144     <dependency>
145       <groupId>io.netty</groupId>
146       <artifactId>netty-codec-http</artifactId>
147       <version>${netty.version}</version>
148     </dependency>
149     <dependency>
150       <groupId>io.netty</groupId>
151       <artifactId>netty-common</artifactId>
152       <version>${netty.version}</version>
153     </dependency>
154     <dependency>
155       <groupId>io.netty</groupId>
156       <artifactId>netty-handler</artifactId>
157       <version>${netty.version}</version>
158     </dependency>
159     <dependency>
160       <groupId>io.netty</groupId>
161       <artifactId>netty-transport</artifactId>
162       <version>${netty.version}</version>
163     </dependency>
164     <dependency>
165       <groupId>equinoxSDK381</groupId>
166       <artifactId>javax.servlet</artifactId>
167       <version>3.0.0.v201112011016</version>
168     </dependency>
169     <dependency>
170       <groupId>equinoxSDK381</groupId>
171       <artifactId>javax.servlet.jsp</artifactId>
172       <version>2.2.0.v201112011158</version>
173     </dependency>
174     <dependency>
175       <groupId>equinoxSDK381</groupId>
176       <artifactId>org.apache.felix.gogo.command</artifactId>
177       <version>0.8.0.v201108120515</version>
178     </dependency>
179     <dependency>
180       <groupId>equinoxSDK381</groupId>
181       <artifactId>org.apache.felix.gogo.runtime</artifactId>
182       <version>0.8.0.v201108120515</version>
183     </dependency>
184     <dependency>
185       <groupId>equinoxSDK381</groupId>
186       <artifactId>org.apache.felix.gogo.shell</artifactId>
187       <version>0.8.0.v201110170705</version>
188     </dependency>
189     <dependency>
190       <groupId>equinoxSDK381</groupId>
191       <artifactId>org.eclipse.equinox.cm</artifactId>
192       <version>1.0.400.v20120522-1841</version>
193     </dependency>
194     <dependency>
195       <groupId>equinoxSDK381</groupId>
196       <artifactId>org.eclipse.equinox.console</artifactId>
197       <version>1.0.0.v20120522-1841</version>
198     </dependency>
199     <dependency>
200       <groupId>equinoxSDK381</groupId>
201       <artifactId>org.eclipse.equinox.ds</artifactId>
202       <version>1.4.0.v20120522-1841</version>
203     </dependency>
204     <dependency>
205       <groupId>equinoxSDK381</groupId>
206       <artifactId>org.eclipse.equinox.launcher</artifactId>
207       <version>1.3.0.v20120522-1813</version>
208     </dependency>
209     <dependency>
210       <groupId>equinoxSDK381</groupId>
211       <artifactId>org.eclipse.equinox.util</artifactId>
212       <version>1.0.400.v20120522-2049</version>
213     </dependency>
214     <dependency>
215       <groupId>equinoxSDK381</groupId>
216       <artifactId>org.eclipse.osgi</artifactId>
217       <version>3.8.1.v20120830-144521</version>
218     </dependency>
219     <dependency>
220       <groupId>equinoxSDK381</groupId>
221       <artifactId>org.eclipse.osgi.services</artifactId>
222       <version>3.3.100.v20120522-1822</version>
223     </dependency>
224     <dependency>
225       <groupId>org.opendaylight.controller</groupId>
226       <artifactId>dummy-console</artifactId>
227       <version>${dummy-console.version}</version>
228     </dependency>
229     <dependency>
230       <groupId>org.opendaylight.neutron</groupId>
231       <artifactId>features-neutron</artifactId>
232       <version>${networkconfig.neutron.version}</version>
233       <classifier>features</classifier>
234       <type>xml</type>
235     </dependency>
236     <dependency>
237       <groupId>org.opendaylight.openflowplugin</groupId>
238       <artifactId>features-openflowplugin</artifactId>
239       <version>${openflowplugin.version}</version>
240       <classifier>features</classifier>
241       <type>xml</type>
242     </dependency>
243     <dependency>
244       <groupId>org.opendaylight.openflowplugin</groupId>
245       <artifactId>features-openflowplugin-extension</artifactId>
246       <version>${openflowplugin.version}</version>
247       <classifier>features</classifier>
248       <type>xml</type>
249     </dependency>
250     <dependency>
251       <groupId>org.opendaylight.ovsdb</groupId>
252       <artifactId>openstack.net-virt</artifactId>
253       <version>${openstack.netvirt.version}</version>
254     </dependency>
255     <dependency>
256       <groupId>org.opendaylight.ovsdb</groupId>
257       <artifactId>openstack.net-virt</artifactId>
258       <version>${openstack.netvirt.version}</version>
259       <type>xml</type>
260       <classifier>config</classifier>
261     </dependency>
262     <dependency>
263       <groupId>org.opendaylight.ovsdb</groupId>
264       <artifactId>openstack.net-virt-providers</artifactId>
265       <version>${openstack.netvirt.providers.version}</version>
266     </dependency>
267     <dependency>
268       <groupId>org.opendaylight.ovsdb</groupId>
269       <artifactId>openstack.net-virt-providers</artifactId>
270       <version>${openstack.netvirt.providers.version}</version>
271       <type>xml</type>
272       <classifier>config</classifier>
273     </dependency>
274     <dependency>
275       <groupId>org.opendaylight.ovsdb</groupId>
276       <artifactId>plugin</artifactId>
277       <version>${ovsdb.plugin.version}</version>
278     </dependency>
279     <dependency>
280       <groupId>org.opendaylight.ovsdb</groupId>
281       <artifactId>ovsdb-plugin-compatibility-layer</artifactId>
282       <version>${ovsdb.plugin.compatibility.layer.version}</version>
283     </dependency>
284     <dependency>
285       <groupId>org.opendaylight.ovsdb</groupId>
286       <artifactId>plugin-shell</artifactId>
287       <version>${plugin.shell.version}</version>
288     </dependency>
289     <dependency>
290       <groupId>org.opendaylight.ovsdb</groupId>
291       <artifactId>schema.openvswitch</artifactId>
292       <version>${schema.openvswitch.version}</version>
293     </dependency>
294     <dependency>
295       <groupId>org.opendaylight.ovsdb</groupId>
296       <artifactId>schema.hardwarevtep</artifactId>
297       <version>${schema.hardwarevtep.version}</version>
298     </dependency>
299     <dependency>
300       <groupId>org.opendaylight.ovsdb</groupId>
301       <artifactId>utils.servicehelper</artifactId>
302       <version>${ovsdb.utils.servicehelper.version}</version>
303     </dependency>
304     <dependency>
305       <groupId>com.google.code.gson</groupId>
306       <artifactId>gson</artifactId>
307     </dependency>
308     <dependency>
309       <groupId>org.opendaylight.controller</groupId>
310       <artifactId>features-mdsal</artifactId>
311       <type>xml</type>
312       <classifier>features</classifier>
313     </dependency>
314     <dependency>
315       <groupId>org.opendaylight.ovsdb</groupId>
316       <artifactId>ovsdb-ui-bundle</artifactId>
317       <version>${ovsdb.ui.version}</version>
318     </dependency>
319     <dependency>
320       <groupId>${project.groupId}</groupId>
321       <artifactId>southbound-features</artifactId>
322       <version>${project.version}</version>
323       <type>xml</type>
324       <classifier>features</classifier>
325     </dependency>
326     <dependency>
327       <groupId>${project.groupId}</groupId>
328       <artifactId>library-features</artifactId>
329       <version>${ovsdb.library.version}</version>
330       <type>xml</type>
331       <classifier>features</classifier>
332     </dependency>
333   </dependencies>
334 </project>