Create McastMacs by Listening DS Changes
[netvirt.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/>
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     <odl.karaf.base.version>1.6.0-SNAPSHOT</odl.karaf.base.version>
49     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
50     <networkconfig.neutron.version>0.6.0-SNAPSHOT</networkconfig.neutron.version>
51     <ovsdb.library.version>1.2.1-SNAPSHOT</ovsdb.library.version>
52     <openstack.netvirt.version>1.2.1-SNAPSHOT</openstack.netvirt.version>
53     <openstack.netvirt.providers.version>1.2.1-SNAPSHOT</openstack.netvirt.providers.version>
54     <ovsdb.plugin.version>1.2.1-SNAPSHOT</ovsdb.plugin.version>
55     <ovsdb.plugin.compatibility.layer.version>1.2.1-SNAPSHOT</ovsdb.plugin.compatibility.layer.version>
56     <ovsdb.utils.servicehelper.version>1.2.1-SNAPSHOT</ovsdb.utils.servicehelper.version>
57     <plugin.shell.version>1.2.1-SNAPSHOT</plugin.shell.version>
58     <schema.hardwarevtep.version>1.2.1-SNAPSHOT</schema.hardwarevtep.version>
59     <schema.openvswitch.version>1.2.1-SNAPSHOT</schema.openvswitch.version>
60     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
61     <sal.version>0.10.0-SNAPSHOT</sal.version>
62     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
63     <config.version>0.4.0-SNAPSHOT</config.version>
64     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
65     <ovsdb.ui.version>0.1.0-SNAPSHOT</ovsdb.ui.version>
66   </properties>
67
68   <dependencyManagement>
69     <dependencies>
70       <dependency>
71         <groupId>org.opendaylight.yangtools</groupId>
72         <artifactId>yangtools-artifacts</artifactId>
73         <version>${yangtools.version}</version>
74         <type>pom</type>
75         <scope>import</scope>
76       </dependency>
77       <dependency>
78         <groupId>org.opendaylight.controller</groupId>
79         <artifactId>mdsal-artifacts</artifactId>
80         <version>${mdsal.version}</version>
81         <type>pom</type>
82         <scope>import</scope>
83       </dependency>
84     </dependencies>
85   </dependencyManagement>
86   <dependencies>
87     <dependency>
88       <groupId>org.osgi</groupId>
89       <artifactId>org.osgi.compendium</artifactId>
90       <scope>provided</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.osgi</groupId>
94       <artifactId>org.osgi.core</artifactId>
95       <scope>provided</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.apache.felix</groupId>
99       <artifactId>org.apache.felix.dependencymanager</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>com.fasterxml.jackson.core</groupId>
103       <artifactId>jackson-annotations</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>com.fasterxml.jackson.core</groupId>
107       <artifactId>jackson-core</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>com.fasterxml.jackson.core</groupId>
111       <artifactId>jackson-databind</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>com.google.guava</groupId>
115       <artifactId>guava</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.apache.commons</groupId>
119       <artifactId>commons-lang3</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>io.netty</groupId>
123       <artifactId>netty-all</artifactId>
124       <version>${netty.version}</version>
125     </dependency>
126     <dependency>
127       <groupId>io.netty</groupId>
128       <artifactId>netty-buffer</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>io.netty</groupId>
132       <artifactId>netty-codec</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>io.netty</groupId>
136       <artifactId>netty-codec-http</artifactId>
137     </dependency>
138     <dependency>
139       <groupId>io.netty</groupId>
140       <artifactId>netty-common</artifactId>
141     </dependency>
142     <dependency>
143       <groupId>io.netty</groupId>
144       <artifactId>netty-handler</artifactId>
145     </dependency>
146     <dependency>
147       <groupId>io.netty</groupId>
148       <artifactId>netty-transport</artifactId>
149     </dependency>
150     <dependency>
151       <groupId>equinoxSDK381</groupId>
152       <artifactId>javax.servlet</artifactId>
153     </dependency>
154     <dependency>
155       <groupId>equinoxSDK381</groupId>
156       <artifactId>javax.servlet.jsp</artifactId>
157     </dependency>
158     <dependency>
159       <groupId>equinoxSDK381</groupId>
160       <artifactId>org.apache.felix.gogo.command</artifactId>
161       <version>0.8.0.v201108120515</version>
162     </dependency>
163     <dependency>
164       <groupId>equinoxSDK381</groupId>
165       <artifactId>org.apache.felix.gogo.runtime</artifactId>
166       <version>0.8.0.v201108120515</version>
167     </dependency>
168     <dependency>
169       <groupId>equinoxSDK381</groupId>
170       <artifactId>org.apache.felix.gogo.shell</artifactId>
171       <version>0.8.0.v201110170705</version>
172     </dependency>
173     <dependency>
174       <groupId>equinoxSDK381</groupId>
175       <artifactId>org.eclipse.equinox.cm</artifactId>
176       <version>1.0.400.v20120522-1841</version>
177     </dependency>
178     <dependency>
179       <groupId>equinoxSDK381</groupId>
180       <artifactId>org.eclipse.equinox.console</artifactId>
181       <version>1.0.0.v20120522-1841</version>
182     </dependency>
183     <dependency>
184       <groupId>equinoxSDK381</groupId>
185       <artifactId>org.eclipse.equinox.ds</artifactId>
186       <version>1.4.0.v20120522-1841</version>
187     </dependency>
188     <dependency>
189       <groupId>equinoxSDK381</groupId>
190       <artifactId>org.eclipse.equinox.launcher</artifactId>
191       <version>1.3.0.v20120522-1813</version>
192     </dependency>
193     <dependency>
194       <groupId>equinoxSDK381</groupId>
195       <artifactId>org.eclipse.equinox.util</artifactId>
196       <version>1.0.400.v20120522-2049</version>
197     </dependency>
198     <dependency>
199       <groupId>equinoxSDK381</groupId>
200       <artifactId>org.eclipse.osgi</artifactId>
201       <version>3.8.1.v20120830-144521</version>
202     </dependency>
203     <dependency>
204       <groupId>equinoxSDK381</groupId>
205       <artifactId>org.eclipse.osgi.services</artifactId>
206       <version>3.3.100.v20120522-1822</version>
207     </dependency>
208     <dependency>
209       <groupId>org.opendaylight.neutron</groupId>
210       <artifactId>features-neutron</artifactId>
211       <version>${networkconfig.neutron.version}</version>
212       <classifier>features</classifier>
213       <type>xml</type>
214     </dependency>
215      <dependency>
216       <groupId>org.opendaylight.neutron</groupId>
217       <artifactId>dummyprovider</artifactId>
218       <version>${networkconfig.neutron.version}</version>
219     </dependency>
220     <dependency>
221       <groupId>org.opendaylight.openflowplugin</groupId>
222       <artifactId>features-openflowplugin</artifactId>
223       <version>${openflowplugin.version}</version>
224       <classifier>features</classifier>
225       <type>xml</type>
226     </dependency>
227     <dependency>
228       <groupId>org.opendaylight.openflowplugin</groupId>
229       <artifactId>features-openflowplugin-extension</artifactId>
230       <version>${openflowplugin.version}</version>
231       <classifier>features</classifier>
232       <type>xml</type>
233     </dependency>
234     <dependency>
235       <groupId>org.opendaylight.ovsdb</groupId>
236       <artifactId>openstack.net-virt</artifactId>
237       <version>${openstack.netvirt.version}</version>
238     </dependency>
239     <dependency>
240       <groupId>org.opendaylight.ovsdb</groupId>
241       <artifactId>openstack.net-virt</artifactId>
242       <version>${openstack.netvirt.version}</version>
243       <type>xml</type>
244       <classifier>config</classifier>
245     </dependency>
246     <dependency>
247       <groupId>org.opendaylight.ovsdb</groupId>
248       <artifactId>openstack.net-virt-providers</artifactId>
249       <version>${openstack.netvirt.providers.version}</version>
250     </dependency>
251     <dependency>
252       <groupId>org.opendaylight.ovsdb</groupId>
253       <artifactId>openstack.net-virt-providers</artifactId>
254       <version>${openstack.netvirt.providers.version}</version>
255       <type>xml</type>
256       <classifier>config</classifier>
257     </dependency>
258     <dependency>
259       <groupId>org.opendaylight.ovsdb</groupId>
260       <artifactId>schema.openvswitch</artifactId>
261       <version>${schema.openvswitch.version}</version>
262     </dependency>
263     <dependency>
264       <groupId>org.opendaylight.ovsdb</groupId>
265       <artifactId>schema.hardwarevtep</artifactId>
266       <version>${schema.hardwarevtep.version}</version>
267     </dependency>
268     <dependency>
269       <groupId>org.opendaylight.ovsdb</groupId>
270       <artifactId>utils.servicehelper</artifactId>
271       <version>${ovsdb.utils.servicehelper.version}</version>
272     </dependency>
273     <dependency>
274       <groupId>${project.groupId}</groupId>
275       <artifactId>utils.mdsal-utils</artifactId>
276       <version>${project.version}</version>
277     </dependency>
278     <dependency>
279       <groupId>com.google.code.gson</groupId>
280       <artifactId>gson</artifactId>
281     </dependency>
282     <dependency>
283       <groupId>org.opendaylight.controller</groupId>
284       <artifactId>features-mdsal</artifactId>
285       <type>xml</type>
286       <classifier>features</classifier>
287     </dependency>
288     <dependency>
289       <groupId>org.opendaylight.ovsdb</groupId>
290       <artifactId>ovsdb-ui-bundle</artifactId>
291       <version>${ovsdb.ui.version}</version>
292     </dependency>
293     <dependency>
294       <groupId>${project.groupId}</groupId>
295       <artifactId>southbound-features</artifactId>
296       <version>${project.version}</version>
297       <type>xml</type>
298       <classifier>features</classifier>
299     </dependency>
300     <dependency>
301       <groupId>${project.groupId}</groupId>
302       <artifactId>library-features</artifactId>
303       <version>${ovsdb.library.version}</version>
304       <type>xml</type>
305       <classifier>features</classifier>
306     </dependency>
307     <!-- DLUX dependency for the UI -->
308     <dependency>
309       <groupId>org.opendaylight.dlux</groupId>
310       <artifactId>features-dlux</artifactId>
311       <version>${dlux.version}</version>
312       <classifier>features</classifier>
313       <type>xml</type>
314     </dependency>
315   </dependencies>
316 </project>