Merge "Remove the unused shared network validation check as its a bit misleading"
[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.netvirt</groupId>
22   <artifactId>features-netvirt</artifactId>
23   <version>1.3.0-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/netvirt.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <properties>
48     <dlux.version>0.4.0-SNAPSHOT</dlux.version>
49     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
50     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
51     <neutron.version>0.7.0-SNAPSHOT</neutron.version>
52     <odl.karaf.base.version>1.7.0-SNAPSHOT</odl.karaf.base.version>
53     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
54     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
55     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
56     <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
57   </properties>
58
59   <dependencies>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>features-mdsal</artifactId>
63       <version>${controller.mdsal.version}</version>
64       <type>xml</type>
65       <classifier>features</classifier>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.mdsal.model</groupId>
69       <artifactId>features-mdsal-model</artifactId>
70       <version>${mdsal.model.version}</version>
71       <classifier>features</classifier>
72       <type>xml</type>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.netconf</groupId>
76       <artifactId>features-restconf</artifactId>
77       <version>${restconf.version}</version>
78       <classifier>features</classifier>
79       <type>xml</type>
80     </dependency>
81     <!-- TODO clean up based on what is provided by odlparent -->
82     <dependency>
83       <groupId>org.osgi</groupId>
84       <artifactId>org.osgi.compendium</artifactId>
85       <scope>provided</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.osgi</groupId>
89       <artifactId>org.osgi.core</artifactId>
90       <scope>provided</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.apache.felix</groupId>
94       <artifactId>org.apache.felix.dependencymanager</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>com.fasterxml.jackson.core</groupId>
98       <artifactId>jackson-annotations</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>com.fasterxml.jackson.core</groupId>
102       <artifactId>jackson-core</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>com.fasterxml.jackson.core</groupId>
106       <artifactId>jackson-databind</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>com.google.guava</groupId>
110       <artifactId>guava</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>commons-net</groupId>
114       <artifactId>commons-net</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>org.apache.commons</groupId>
118       <artifactId>commons-lang3</artifactId>
119     </dependency>
120     <dependency>
121       <groupId>io.netty</groupId>
122       <artifactId>netty-buffer</artifactId>
123     </dependency>
124     <dependency>
125       <groupId>io.netty</groupId>
126       <artifactId>netty-codec</artifactId>
127     </dependency>
128     <dependency>
129       <groupId>io.netty</groupId>
130       <artifactId>netty-codec-http</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>io.netty</groupId>
134       <artifactId>netty-common</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>io.netty</groupId>
138       <artifactId>netty-handler</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>io.netty</groupId>
142       <artifactId>netty-transport</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>com.google.code.gson</groupId>
146       <artifactId>gson</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>org.opendaylight.neutron</groupId>
150       <artifactId>features-neutron</artifactId>
151       <version>${neutron.version}</version>
152       <classifier>features</classifier>
153       <type>xml</type>
154     </dependency>
155     <dependency>
156       <groupId>org.opendaylight.openflowplugin</groupId>
157       <artifactId>features-openflowplugin</artifactId>
158       <version>${openflowplugin.version}</version>
159       <classifier>features</classifier>
160       <type>xml</type>
161     </dependency>
162     <dependency>
163       <groupId>org.opendaylight.openflowplugin</groupId>
164       <artifactId>features-openflowplugin-extension</artifactId>
165       <version>${openflowplugin.version}</version>
166       <classifier>features</classifier>
167       <type>xml</type>
168     </dependency>
169     <dependency>
170       <groupId>org.opendaylight.openflowplugin</groupId>
171       <artifactId>features-openflowplugin-li</artifactId>
172       <version>${openflowplugin.version}</version>
173       <classifier>features</classifier>
174       <type>xml</type>
175     </dependency>
176     <dependency>
177       <groupId>org.opendaylight.openflowplugin</groupId>
178       <artifactId>features-openflowplugin-extension-li</artifactId>
179       <version>${openflowplugin.version}</version>
180       <classifier>features</classifier>
181       <type>xml</type>
182     </dependency>
183     <dependency>
184       <groupId>${project.groupId}</groupId>
185       <artifactId>openstack.net-virt</artifactId>
186       <version>${project.version}</version>
187     </dependency>
188     <dependency>
189       <groupId>${project.groupId}</groupId>
190       <artifactId>openstack.net-virt</artifactId>
191       <version>${project.version}</version>
192       <type>xml</type>
193       <classifier>config</classifier>
194     </dependency>
195     <dependency>
196       <groupId>${project.groupId}</groupId>
197       <artifactId>openstack.net-virt-providers</artifactId>
198       <version>${project.version}</version>
199     </dependency>
200     <dependency>
201       <groupId>${project.groupId}</groupId>
202       <artifactId>openstack.net-virt-providers</artifactId>
203       <version>${project.version}</version>
204       <type>xml</type>
205       <classifier>config</classifier>
206     </dependency>
207     <dependency>
208       <groupId>org.opendaylight.ovsdb</groupId>
209       <artifactId>schema.openvswitch</artifactId>
210       <version>${ovsdb.version}</version>
211     </dependency>
212     <dependency>
213       <groupId>org.opendaylight.ovsdb</groupId>
214       <artifactId>schema.hardwarevtep</artifactId>
215       <version>${ovsdb.version}</version>
216     </dependency>
217     <dependency>
218       <groupId>${project.groupId}</groupId>
219       <artifactId>utils.servicehelper</artifactId>
220       <version>${project.version}</version>
221     </dependency>
222     <dependency>
223       <groupId>${project.groupId}</groupId>
224       <artifactId>utils.mdsal-utils</artifactId>
225       <version>${project.version}</version>
226     </dependency>
227     <dependency>
228       <groupId>org.opendaylight.ovsdb</groupId>
229       <artifactId>utils.mdsal-utils</artifactId>
230       <version>${ovsdb.version}</version>
231     </dependency>
232     <dependency>
233       <groupId>${project.groupId}</groupId>
234       <artifactId>ovsdb-ui-bundle</artifactId>
235       <version>${project.version}</version>
236     </dependency>
237     <dependency>
238       <groupId>org.opendaylight.ovsdb</groupId>
239       <artifactId>southbound-features</artifactId>
240       <version>${ovsdb.version}</version>
241       <type>xml</type>
242       <classifier>features</classifier>
243     </dependency>
244     <dependency>
245       <groupId>${project.groupId}</groupId>
246       <artifactId>netvirt-api</artifactId>
247       <version>${project.version}</version>
248     </dependency>
249     <dependency>
250       <groupId>${project.groupId}</groupId>
251       <artifactId>hwgw</artifactId>
252       <version>${project.version}</version>
253     </dependency>
254     <dependency>
255       <groupId>${project.groupId}</groupId>
256       <artifactId>hwgw</artifactId>
257       <version>${project.version}</version>
258       <type>xml</type>
259       <classifier>config</classifier>
260     </dependency>
261     <dependency>
262       <groupId>org.opendaylight.ovsdb</groupId>
263       <artifactId>hwvtepsouthbound-features</artifactId>
264       <version>${ovsdb.version}</version>
265       <type>xml</type>
266       <classifier>features</classifier>
267     </dependency>
268     <dependency>
269       <groupId>${project.groupId}</groupId>
270       <artifactId>neutron</artifactId>
271       <version>${project.version}</version>
272     </dependency>
273     <dependency>
274       <groupId>${project.groupId}</groupId>
275       <artifactId>neutron</artifactId>
276       <version>${project.version}</version>
277       <type>xml</type>
278       <classifier>config</classifier>
279     </dependency>
280     <dependency>
281       <groupId>org.opendaylight.dlux</groupId>
282       <artifactId>features-dlux</artifactId>
283       <version>${dlux.version}</version>
284       <classifier>features</classifier>
285       <type>xml</type>
286     </dependency>
287     <dependency>
288       <groupId>${project.groupId}</groupId>
289       <artifactId>utils.netvirt-it-utils</artifactId>
290       <version>${project.version}</version>
291       <!--<scope>test</scope>-->
292     </dependency>
293     <dependency>
294       <groupId>org.opendaylight.ovsdb</groupId>
295       <artifactId>utils.ovsdb-it-utils</artifactId>
296       <version>${ovsdb.version}</version>
297       <!--<scope>test</scope>-->
298     </dependency>
299   </dependencies>
300 </project>