Merge "IPv6 support in Security Groups."
[netvirt.git] / features / 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.7.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>features-ovsdb</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>pom</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.7.0-SNAPSHOT</odl.karaf.base.version>
49     <mdsal.version>1.4.0-SNAPSHOT</mdsal.version>
50     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
51     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
52     <neutron.version>0.7.0-SNAPSHOT</neutron.version>
53     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
54     <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
55     <dlux.version>0.4.0-SNAPSHOT</dlux.version>
56   </properties>
57
58   <dependencyManagement>
59     <dependencies>
60       <dependency>
61         <groupId>org.opendaylight.yangtools</groupId>
62         <artifactId>yangtools-artifacts</artifactId>
63         <version>${yangtools.version}</version>
64         <type>pom</type>
65         <scope>import</scope>
66       </dependency>
67       <dependency>
68         <groupId>org.opendaylight.controller</groupId>
69         <artifactId>mdsal-artifacts</artifactId>
70         <version>${mdsal.version}</version>
71         <type>pom</type>
72         <scope>import</scope>
73       </dependency>
74     </dependencies>
75   </dependencyManagement>
76   <dependencies>
77     <!-- controller dependencies -->
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>features-mdsal</artifactId>
81       <type>xml</type>
82       <classifier>features</classifier>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.mdsal.model</groupId>
86       <artifactId>features-mdsal-model</artifactId>
87       <version>${mdsal.model.version}</version>
88       <classifier>features</classifier>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.netconf</groupId>
94       <artifactId>features-restconf</artifactId>
95       <version>${restconf.version}</version>
96       <classifier>features</classifier>
97       <type>xml</type>
98       <scope>runtime</scope>
99     </dependency>
100     <!-- external dependencies -->
101     <!-- TODO clean up based on what is provided by odlparent -->
102     <dependency>
103       <groupId>org.osgi</groupId>
104       <artifactId>org.osgi.compendium</artifactId>
105       <scope>provided</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.osgi</groupId>
109       <artifactId>org.osgi.core</artifactId>
110       <scope>provided</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.apache.felix</groupId>
114       <artifactId>org.apache.felix.dependencymanager</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>com.fasterxml.jackson.core</groupId>
118       <artifactId>jackson-annotations</artifactId>
119     </dependency>
120     <dependency>
121       <groupId>com.fasterxml.jackson.core</groupId>
122       <artifactId>jackson-core</artifactId>
123     </dependency>
124     <dependency>
125       <groupId>com.fasterxml.jackson.core</groupId>
126       <artifactId>jackson-databind</artifactId>
127     </dependency>
128     <dependency>
129       <groupId>com.google.guava</groupId>
130       <artifactId>guava</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>org.apache.commons</groupId>
134       <artifactId>commons-lang3</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>io.netty</groupId>
138       <artifactId>netty-buffer</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>io.netty</groupId>
142       <artifactId>netty-codec</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>io.netty</groupId>
146       <artifactId>netty-codec-http</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>io.netty</groupId>
150       <artifactId>netty-common</artifactId>
151     </dependency>
152     <dependency>
153       <groupId>io.netty</groupId>
154       <artifactId>netty-handler</artifactId>
155     </dependency>
156     <dependency>
157       <groupId>io.netty</groupId>
158       <artifactId>netty-transport</artifactId>
159     </dependency>
160     <dependency>
161       <groupId>equinoxSDK381</groupId>
162       <artifactId>javax.servlet</artifactId>
163     </dependency>
164     <dependency>
165       <groupId>equinoxSDK381</groupId>
166       <artifactId>javax.servlet.jsp</artifactId>
167     </dependency>
168     <dependency>
169       <groupId>equinoxSDK381</groupId>
170       <artifactId>org.apache.felix.gogo.command</artifactId>
171     </dependency>
172     <dependency>
173       <groupId>equinoxSDK381</groupId>
174       <artifactId>org.apache.felix.gogo.runtime</artifactId>
175     </dependency>
176     <dependency>
177       <groupId>equinoxSDK381</groupId>
178       <artifactId>org.apache.felix.gogo.shell</artifactId>
179     </dependency>
180     <dependency>
181       <groupId>equinoxSDK381</groupId>
182       <artifactId>org.eclipse.equinox.cm</artifactId>
183     </dependency>
184     <dependency>
185       <groupId>equinoxSDK381</groupId>
186       <artifactId>org.eclipse.equinox.console</artifactId>
187     </dependency>
188     <dependency>
189       <groupId>equinoxSDK381</groupId>
190       <artifactId>org.eclipse.equinox.ds</artifactId>
191     </dependency>
192     <dependency>
193       <groupId>equinoxSDK381</groupId>
194       <artifactId>org.eclipse.equinox.launcher</artifactId>
195     </dependency>
196     <dependency>
197       <groupId>equinoxSDK381</groupId>
198       <artifactId>org.eclipse.equinox.util</artifactId>
199     </dependency>
200     <dependency>
201       <groupId>equinoxSDK381</groupId>
202       <artifactId>org.eclipse.osgi</artifactId>
203     </dependency>
204     <dependency>
205       <groupId>equinoxSDK381</groupId>
206       <artifactId>org.eclipse.osgi.services</artifactId>
207     </dependency>
208     <dependency>
209       <groupId>com.google.code.gson</groupId>
210       <artifactId>gson</artifactId>
211     </dependency>
212     <!-- neutron dependencies -->
213     <dependency>
214       <groupId>org.opendaylight.neutron</groupId>
215       <artifactId>features-neutron</artifactId>
216       <version>${neutron.version}</version>
217       <classifier>features</classifier>
218       <type>xml</type>
219     </dependency>
220      <dependency>
221       <groupId>org.opendaylight.neutron</groupId>
222       <artifactId>dummyprovider</artifactId>
223       <version>${neutron.version}</version>
224     </dependency>
225     <!-- openflowplugin dependencies -->
226     <dependency>
227       <groupId>org.opendaylight.openflowplugin</groupId>
228       <artifactId>features-openflowplugin</artifactId>
229       <version>${openflowplugin.version}</version>
230       <classifier>features</classifier>
231       <type>xml</type>
232     </dependency>
233     <dependency>
234       <groupId>org.opendaylight.openflowplugin</groupId>
235       <artifactId>features-openflowplugin-extension</artifactId>
236       <version>${openflowplugin.version}</version>
237       <classifier>features</classifier>
238       <type>xml</type>
239     </dependency>
240
241     <!-- openflowplugin dependencies for net-virt clustering-->
242     <dependency>
243       <groupId>org.opendaylight.openflowplugin</groupId>
244       <artifactId>features-openflowplugin-li</artifactId>
245       <version>${openflowplugin.version}</version>
246       <classifier>features</classifier>
247       <type>xml</type>
248     </dependency>
249     <dependency>
250       <groupId>org.opendaylight.openflowplugin</groupId>
251       <artifactId>features-openflowplugin-extension-li</artifactId>
252       <version>${openflowplugin.version}</version>
253       <classifier>features</classifier>
254       <type>xml</type>
255     </dependency>
256
257     <!-- project specific dependencies -->
258     <dependency>
259       <groupId>${project.groupId}</groupId>
260       <artifactId>openstack.net-virt</artifactId>
261       <version>${project.version}</version>
262     </dependency>
263     <dependency>
264       <groupId>${project.groupId}</groupId>
265       <artifactId>openstack.net-virt</artifactId>
266       <version>${project.version}</version>
267       <type>xml</type>
268       <classifier>config</classifier>
269     </dependency>
270     <dependency>
271       <groupId>${project.groupId}</groupId>
272       <artifactId>openstack.net-virt-providers</artifactId>
273       <version>${project.version}</version>
274     </dependency>
275     <dependency>
276       <groupId>${project.groupId}</groupId>
277       <artifactId>openstack.net-virt-providers</artifactId>
278       <version>${project.version}</version>
279       <type>xml</type>
280       <classifier>config</classifier>
281     </dependency>
282     <dependency>
283       <groupId>${project.groupId}</groupId>
284       <artifactId>schema.openvswitch</artifactId>
285       <version>${project.version}</version>
286     </dependency>
287     <dependency>
288       <groupId>${project.groupId}</groupId>
289       <artifactId>schema.hardwarevtep</artifactId>
290       <version>${project.version}</version>
291     </dependency>
292     <dependency>
293       <groupId>${project.groupId}</groupId>
294       <artifactId>utils.servicehelper</artifactId>
295       <version>${project.version}</version>
296     </dependency>
297     <dependency>
298       <groupId>${project.groupId}</groupId>
299       <artifactId>utils.mdsal-utils</artifactId>
300       <version>${project.version}</version>
301     </dependency>
302     <dependency>
303       <groupId>${project.groupId}</groupId>
304       <artifactId>ovsdb-ui-bundle</artifactId>
305       <version>${project.version}</version>
306     </dependency>
307     <dependency>
308       <groupId>${project.groupId}</groupId>
309       <artifactId>southbound-features</artifactId>
310       <version>${project.version}</version>
311       <type>xml</type>
312       <classifier>features</classifier>
313     </dependency>
314     <dependency>
315       <groupId>${project.groupId}</groupId>
316       <artifactId>library-features</artifactId>
317       <version>${project.version}</version>
318       <type>xml</type>
319       <classifier>features</classifier>
320     </dependency>
321     <dependency>
322       <groupId>${project.groupId}</groupId>
323       <artifactId>netvirt-api</artifactId>
324       <version>${project.version}</version>
325     </dependency>
326     <dependency>
327       <groupId>${project.groupId}</groupId>
328       <artifactId>hwgw</artifactId>
329       <version>${project.version}</version>
330     </dependency>
331     <dependency>
332       <groupId>${project.groupId}</groupId>
333       <artifactId>hwvtepsouthbound-features</artifactId>
334       <version>${project.version}</version>
335       <type>xml</type>
336       <classifier>features</classifier>
337     </dependency>
338     <!-- DLUX dependency for the UI -->
339     <dependency>
340       <groupId>org.opendaylight.dlux</groupId>
341       <artifactId>features-dlux</artifactId>
342       <version>${dlux.version}</version>
343       <classifier>features</classifier>
344       <type>xml</type>
345     </dependency>
346   </dependencies>
347 </project>