Merge "it-utils should be only included for IT"
[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>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.7.0-SNAPSHOT</odl.karaf.base.version>
49     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.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>${controller.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>commons-net</groupId>
134       <artifactId>commons-net</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>org.apache.commons</groupId>
138       <artifactId>commons-lang3</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>io.netty</groupId>
142       <artifactId>netty-buffer</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>io.netty</groupId>
146       <artifactId>netty-codec</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>io.netty</groupId>
150       <artifactId>netty-codec-http</artifactId>
151     </dependency>
152     <dependency>
153       <groupId>io.netty</groupId>
154       <artifactId>netty-common</artifactId>
155     </dependency>
156     <dependency>
157       <groupId>io.netty</groupId>
158       <artifactId>netty-handler</artifactId>
159     </dependency>
160     <dependency>
161       <groupId>io.netty</groupId>
162       <artifactId>netty-transport</artifactId>
163     </dependency>
164     <dependency>
165       <groupId>com.google.code.gson</groupId>
166       <artifactId>gson</artifactId>
167     </dependency>
168     <!-- neutron dependencies -->
169     <dependency>
170       <groupId>org.opendaylight.neutron</groupId>
171       <artifactId>features-neutron</artifactId>
172       <version>${neutron.version}</version>
173       <classifier>features</classifier>
174       <type>xml</type>
175     </dependency>
176     <!-- openflowplugin dependencies -->
177     <dependency>
178       <groupId>org.opendaylight.openflowplugin</groupId>
179       <artifactId>features-openflowplugin</artifactId>
180       <version>${openflowplugin.version}</version>
181       <classifier>features</classifier>
182       <type>xml</type>
183     </dependency>
184     <dependency>
185       <groupId>org.opendaylight.openflowplugin</groupId>
186       <artifactId>features-openflowplugin-extension</artifactId>
187       <version>${openflowplugin.version}</version>
188       <classifier>features</classifier>
189       <type>xml</type>
190     </dependency>
191
192     <!-- openflowplugin dependencies for net-virt clustering-->
193     <dependency>
194       <groupId>org.opendaylight.openflowplugin</groupId>
195       <artifactId>features-openflowplugin-li</artifactId>
196       <version>${openflowplugin.version}</version>
197       <classifier>features</classifier>
198       <type>xml</type>
199     </dependency>
200     <dependency>
201       <groupId>org.opendaylight.openflowplugin</groupId>
202       <artifactId>features-openflowplugin-extension-li</artifactId>
203       <version>${openflowplugin.version}</version>
204       <classifier>features</classifier>
205       <type>xml</type>
206     </dependency>
207
208     <!-- project specific dependencies -->
209     <dependency>
210       <groupId>${project.groupId}</groupId>
211       <artifactId>openstack.net-virt</artifactId>
212       <version>${project.version}</version>
213     </dependency>
214     <dependency>
215       <groupId>${project.groupId}</groupId>
216       <artifactId>openstack.net-virt</artifactId>
217       <version>${project.version}</version>
218       <type>xml</type>
219       <classifier>config</classifier>
220     </dependency>
221     <dependency>
222       <groupId>${project.groupId}</groupId>
223       <artifactId>openstack.net-virt-providers</artifactId>
224       <version>${project.version}</version>
225     </dependency>
226     <dependency>
227       <groupId>${project.groupId}</groupId>
228       <artifactId>openstack.net-virt-providers</artifactId>
229       <version>${project.version}</version>
230       <type>xml</type>
231       <classifier>config</classifier>
232     </dependency>
233     <dependency>
234       <groupId>${project.groupId}</groupId>
235       <artifactId>schema.openvswitch</artifactId>
236       <version>${project.version}</version>
237     </dependency>
238     <dependency>
239       <groupId>${project.groupId}</groupId>
240       <artifactId>schema.hardwarevtep</artifactId>
241       <version>${project.version}</version>
242     </dependency>
243     <dependency>
244       <groupId>${project.groupId}</groupId>
245       <artifactId>utils.servicehelper</artifactId>
246       <version>${project.version}</version>
247     </dependency>
248     <dependency>
249       <groupId>${project.groupId}</groupId>
250       <artifactId>utils.mdsal-utils</artifactId>
251       <version>${project.version}</version>
252     </dependency>
253     <dependency>
254       <groupId>${project.groupId}</groupId>
255       <artifactId>utils.it-utils</artifactId>
256       <version>${project.version}</version>
257       <scope>test</scope>
258     </dependency>
259     <dependency>
260       <groupId>${project.groupId}</groupId>
261       <artifactId>ovsdb-ui-bundle</artifactId>
262       <version>${project.version}</version>
263     </dependency>
264     <dependency>
265       <groupId>${project.groupId}</groupId>
266       <artifactId>southbound-features</artifactId>
267       <version>${project.version}</version>
268       <type>xml</type>
269       <classifier>features</classifier>
270     </dependency>
271     <dependency>
272       <groupId>${project.groupId}</groupId>
273       <artifactId>library-features</artifactId>
274       <version>${project.version}</version>
275       <type>xml</type>
276       <classifier>features</classifier>
277     </dependency>
278     <dependency>
279       <groupId>${project.groupId}</groupId>
280       <artifactId>netvirt-api</artifactId>
281       <version>${project.version}</version>
282     </dependency>
283     <dependency>
284       <groupId>${project.groupId}</groupId>
285       <artifactId>hwgw</artifactId>
286       <version>${project.version}</version>
287     </dependency>
288     <dependency>
289       <groupId>${project.groupId}</groupId>
290       <artifactId>hwgw</artifactId>
291       <version>${project.version}</version>
292       <type>xml</type>
293       <classifier>config</classifier>
294     </dependency>
295     <dependency>
296       <groupId>${project.groupId}</groupId>
297       <artifactId>hwvtepsouthbound-features</artifactId>
298       <version>${project.version}</version>
299       <type>xml</type>
300       <classifier>features</classifier>
301     </dependency>
302     <dependency>
303       <groupId>${project.groupId}</groupId>
304       <artifactId>neutron</artifactId>
305       <version>${project.version}</version>
306     </dependency>
307     <dependency>
308       <groupId>${project.groupId}</groupId>
309       <artifactId>neutron</artifactId>
310       <version>${project.version}</version>
311       <type>xml</type>
312       <classifier>config</classifier>
313     </dependency>
314     <!-- DLUX dependency for the UI -->
315     <dependency>
316       <groupId>org.opendaylight.dlux</groupId>
317       <artifactId>features-dlux</artifactId>
318       <version>${dlux.version}</version>
319       <classifier>features</classifier>
320       <type>xml</type>
321     </dependency>
322   </dependencies>
323 </project>