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