Merge changes I00b761de,I6b7440b3,Id4a96515
[ovsdb.git] / commons / integrationtest / 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.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../parent</relativePath>
19   </parent>
20
21   <artifactId>commons.integrationtest</artifactId>
22   <name>${project.artifactId}.parent</name>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>pom</packaging>
25
26   <properties>
27     <!-- Overrides -->
28     <!-- Controller Dependencies for Pax Exam -->
29     <arphandler.version>0.6.0-SNAPSHOT</arphandler.version>
30     <bundlescanner.implementation.version>0.5.0-SNAPSHOT</bundlescanner.implementation.version>
31     <bundlescanner.version>0.5.0-SNAPSHOT</bundlescanner.version>
32     <clustering.services_implementation.version>0.5.0-SNAPSHOT</clustering.services_implementation.version>
33     <commons.httpclient.version>0.2.0-SNAPSHOT</commons.httpclient.version>
34     <configuration.implementation.version>0.5.0-SNAPSHOT</configuration.implementation.version>
35     <configuration.version>0.5.0-SNAPSHOT</configuration.version>
36     <connectionmanager.version>0.2.0-SNAPSHOT</connectionmanager.version>
37     <containermanager.it.version>0.6.0-SNAPSHOT</containermanager.it.version>
38     <flowprogrammer.northbound.version>0.5.0-SNAPSHOT</flowprogrammer.northbound.version>
39     <forwarding.staticrouting>0.6.0-SNAPSHOT</forwarding.staticrouting>
40     <forwarding.staticrouting.northbound.version>0.5.0-SNAPSHOT</forwarding.staticrouting.northbound.version>
41     <forwardingrulesmanager.implementation.version>0.5.0-SNAPSHOT</forwardingrulesmanager.implementation.version>
42     <hosttracker.api.version>0.6.0-SNAPSHOT</hosttracker.api.version>
43     <hosttracker.implementation.version>0.6.0-SNAPSHOT</hosttracker.implementation.version>
44     <hosttracker.northbound.version>0.5.0-SNAPSHOT</hosttracker.northbound.version>
45     <logging.bridge.version>0.5.0-SNAPSHOT</logging.bridge.version>
46     <protocol_plugins.stub.version>0.5.0-SNAPSHOT</protocol_plugins.stub.version>
47     <routing.dijkstra_implementation.version>0.5.0-SNAPSHOT</routing.dijkstra_implementation.version>
48     <sal.implementation.version>0.5.0-SNAPSHOT</sal.implementation.version>
49     <security.version>0.5.0-SNAPSHOT</security.version>
50     <statistics.northbound.version>0.5.0-SNAPSHOT</statistics.northbound.version>
51     <statisticsmanager.implementation.version>0.5.0-SNAPSHOT</statisticsmanager.implementation.version>
52     <statisticsmanager.version>0.6.0-SNAPSHOT</statisticsmanager.version>
53     <subnets.northbound.version>0.5.0-SNAPSHOT</subnets.northbound.version>
54     <switchmanager.implementation.version>0.5.0-SNAPSHOT</switchmanager.implementation.version>
55     <switchmanager.northbound.version>0.5.0-SNAPSHOT</switchmanager.northbound.version>
56     <topology.northbound.version>0.5.0-SNAPSHOT</topology.northbound.version>
57     <topology.web.version>0.5.0-SNAPSHOT</topology.web.version>
58     <topologymanager.version>0.5.0-SNAPSHOT</topologymanager.version>
59     <usermanager.implementation.version>0.5.0-SNAPSHOT</usermanager.implementation.version>
60     <usermanager.northbound.version>0.1.0-SNAPSHOT</usermanager.northbound.version>
61     <usermanager.version>0.5.0-SNAPSHOT</usermanager.version>
62     <!-- 3rd Party Dependencies -->
63     <yaml.version>1.10</yaml.version>
64   </properties>
65
66   <dependencyManagement>
67     <dependencies>
68       <dependency>
69         <groupId>org.yaml</groupId>
70         <artifactId>snakeyaml</artifactId>
71         <version>${yaml.version}</version>
72       </dependency>
73     </dependencies>
74   </dependencyManagement>
75
76   <dependencies>
77     <dependency>
78       <groupId>ch.qos.logback</groupId>
79       <artifactId>logback-classic</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>ch.qos.logback</groupId>
83       <artifactId>logback-core</artifactId>
84     </dependency>
85
86     <dependency>
87       <groupId>com.fasterxml.jackson.core</groupId>
88       <artifactId>jackson-annotations</artifactId>
89     </dependency>
90
91     <dependency>
92       <groupId>com.fasterxml.jackson.core</groupId>
93       <artifactId>jackson-core</artifactId>
94     </dependency>
95
96     <dependency>
97       <groupId>com.fasterxml.jackson.core</groupId>
98       <artifactId>jackson-databind</artifactId>
99     </dependency>
100
101     <dependency>
102       <groupId>com.fasterxml.jackson.jaxrs</groupId>
103       <artifactId>jackson-jaxrs-json-provider</artifactId>
104     </dependency>
105
106     <dependency>
107       <groupId>com.fasterxml.jackson.module</groupId>
108       <artifactId>jackson-module-jaxb-annotations</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>com.google.code.gson</groupId>
112       <artifactId>gson</artifactId>
113       <scope>compile</scope>
114     </dependency>
115     <dependency>
116       <groupId>com.google.guava</groupId>
117       <artifactId>guava</artifactId>
118     </dependency>
119     <!-- Jersey for JAXRS -->
120     <dependency>
121       <groupId>com.sun.jersey</groupId>
122       <artifactId>jersey-core</artifactId>
123     </dependency>
124     <dependency>
125       <groupId>com.sun.jersey</groupId>
126       <artifactId>jersey-server</artifactId>
127     </dependency>
128     <dependency>
129       <groupId>com.sun.jersey</groupId>
130       <artifactId>jersey-client</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>commons-codec</groupId>
134       <artifactId>commons-codec</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>commons-net</groupId>
138       <artifactId>commons-net</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>commons-collections</groupId>
142       <artifactId>commons-collections</artifactId>
143       <version>1.0</version>
144     </dependency>
145     <dependency>
146       <groupId>commons-fileupload</groupId>
147       <artifactId>commons-fileupload</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>commons-io</groupId>
151       <artifactId>commons-io</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>commons-lang</groupId>
155       <artifactId>commons-lang</artifactId>
156       <version>2.3</version>
157     </dependency>
158     <dependency>
159       <groupId>eclipselink</groupId>
160       <artifactId>javax.persistence</artifactId>
161     </dependency>
162     <dependency>
163       <groupId>eclipselink</groupId>
164       <artifactId>javax.resource</artifactId>
165     </dependency>
166     <dependency>
167       <groupId>equinoxSDK381</groupId>
168       <artifactId>javax.servlet</artifactId>
169     </dependency>
170     <dependency>
171       <groupId>equinoxSDK381</groupId>
172       <artifactId>javax.servlet.jsp</artifactId>
173     </dependency>
174     <dependency>
175       <groupId>equinoxSDK381</groupId>
176       <artifactId>org.apache.felix.gogo.command</artifactId>
177     </dependency>
178     <dependency>
179       <groupId>equinoxSDK381</groupId>
180       <artifactId>org.apache.felix.gogo.runtime</artifactId>
181     </dependency>
182     <dependency>
183       <groupId>equinoxSDK381</groupId>
184       <artifactId>org.apache.felix.gogo.shell</artifactId>
185     </dependency>
186     <dependency>
187       <groupId>equinoxSDK381</groupId>
188       <artifactId>org.eclipse.equinox.cm</artifactId>
189     </dependency>
190     <dependency>
191       <groupId>equinoxSDK381</groupId>
192       <artifactId>org.eclipse.equinox.console</artifactId>
193     </dependency>
194     <dependency>
195       <groupId>equinoxSDK381</groupId>
196       <artifactId>org.eclipse.equinox.ds</artifactId>
197     </dependency>
198     <dependency>
199       <groupId>equinoxSDK381</groupId>
200       <artifactId>org.eclipse.equinox.launcher</artifactId>
201     </dependency>
202     <dependency>
203       <groupId>equinoxSDK381</groupId>
204       <artifactId>org.eclipse.equinox.util</artifactId>
205     </dependency>
206     <dependency>
207       <groupId>equinoxSDK381</groupId>
208       <artifactId>org.eclipse.osgi</artifactId>
209     </dependency>
210     <dependency>
211       <groupId>equinoxSDK381</groupId>
212       <artifactId>org.eclipse.osgi.services</artifactId>
213     </dependency>
214     <!-- Gemini Web -->
215     <dependency>
216       <groupId>geminiweb</groupId>
217       <artifactId>org.eclipse.gemini.web.core</artifactId>
218     </dependency>
219     <dependency>
220       <groupId>geminiweb</groupId>
221       <artifactId>org.eclipse.gemini.web.extender</artifactId>
222     </dependency>
223     <dependency>
224       <groupId>geminiweb</groupId>
225       <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
226     </dependency>
227     <dependency>
228       <groupId>geminiweb</groupId>
229       <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
230     </dependency>
231     <dependency>
232       <groupId>geminiweb</groupId>
233       <artifactId>org.eclipse.virgo.util.common</artifactId>
234     </dependency>
235     <dependency>
236       <groupId>geminiweb</groupId>
237       <artifactId>org.eclipse.virgo.util.io</artifactId>
238     </dependency>
239     <dependency>
240       <groupId>geminiweb</groupId>
241       <artifactId>org.eclipse.virgo.util.math</artifactId>
242     </dependency>
243     <dependency>
244       <groupId>geminiweb</groupId>
245       <artifactId>org.eclipse.virgo.util.osgi</artifactId>
246     </dependency>
247     <dependency>
248       <groupId>geminiweb</groupId>
249       <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
250     </dependency>
251     <dependency>
252       <groupId>geminiweb</groupId>
253       <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
254     </dependency>
255     <dependency>
256       <groupId>io.netty</groupId>
257       <artifactId>netty-buffer</artifactId>
258     </dependency>
259     <dependency>
260       <groupId>io.netty</groupId>
261       <artifactId>netty-codec</artifactId>
262     </dependency>
263     <dependency>
264       <groupId>io.netty</groupId>
265       <artifactId>netty-common</artifactId>
266     </dependency>
267     <dependency>
268       <groupId>io.netty</groupId>
269       <artifactId>netty-handler</artifactId>
270     </dependency>
271     <dependency>
272       <groupId>io.netty</groupId>
273       <artifactId>netty-transport</artifactId>
274     </dependency>
275     <dependency>
276       <groupId>javax.portlet</groupId>
277       <artifactId>portlet-api</artifactId>
278       <version>2.0</version>
279     </dependency>
280     <dependency>
281       <groupId>orbit</groupId>
282       <artifactId>javax.activation</artifactId>
283     </dependency>
284     <dependency>
285       <groupId>orbit</groupId>
286       <artifactId>javax.annotation</artifactId>
287     </dependency>
288     <dependency>
289       <groupId>orbit</groupId>
290       <artifactId>javax.ejb</artifactId>
291     </dependency>
292     <dependency>
293       <groupId>orbit</groupId>
294       <artifactId>javax.el</artifactId>
295     </dependency>
296     <dependency>
297       <groupId>orbit</groupId>
298       <artifactId>javax.mail.glassfish</artifactId>
299     </dependency>
300     <dependency>
301       <groupId>orbit</groupId>
302       <artifactId>javax.servlet.jsp.jstl</artifactId>
303     </dependency>
304     <dependency>
305       <groupId>orbit</groupId>
306       <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
307     </dependency>
308     <dependency>
309       <groupId>orbit</groupId>
310       <artifactId>javax.xml.rpc</artifactId>
311     </dependency>
312     <dependency>
313       <groupId>orbit</groupId>
314       <artifactId>org.apache.catalina</artifactId>
315     </dependency>
316     <dependency>
317       <groupId>orbit</groupId>
318       <artifactId>org.apache.catalina.ha</artifactId>
319     </dependency>
320     <dependency>
321       <groupId>orbit</groupId>
322       <artifactId>org.apache.catalina.tribes</artifactId>
323     </dependency>
324     <dependency>
325       <groupId>orbit</groupId>
326       <artifactId>org.apache.coyote</artifactId>
327     </dependency>
328     <dependency>
329       <groupId>orbit</groupId>
330       <artifactId>org.apache.el</artifactId>
331     </dependency>
332     <dependency>
333       <groupId>orbit</groupId>
334       <artifactId>org.apache.jasper</artifactId>
335     </dependency>
336     <dependency>
337       <groupId>orbit</groupId>
338       <artifactId>org.apache.juli.extras</artifactId>
339     </dependency>
340     <dependency>
341       <groupId>orbit</groupId>
342       <artifactId>org.apache.tomcat.api</artifactId>
343     </dependency>
344     <dependency>
345       <groupId>orbit</groupId>
346       <artifactId>org.apache.tomcat.util</artifactId>
347     </dependency>
348     <dependency>
349       <groupId>org.aopalliance</groupId>
350       <artifactId>com.springsource.org.aopalliance</artifactId>
351     </dependency>
352     <dependency>
353       <groupId>org.apache.commons</groupId>
354       <artifactId>commons-lang3</artifactId>
355     </dependency>
356     <dependency>
357       <groupId>org.apache.felix</groupId>
358       <artifactId>org.apache.felix.dependencymanager</artifactId>
359     </dependency>
360     <dependency>
361       <groupId>org.apache.felix</groupId>
362       <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
363     </dependency>
364     <dependency>
365       <groupId>org.apache.felix</groupId>
366       <artifactId>org.apache.felix.fileinstall</artifactId>
367     </dependency>
368     <dependency>
369       <groupId>org.apache.httpcomponents</groupId>
370       <artifactId>httpcore-nio</artifactId>
371       <version>4.2.1</version>
372       <optional>true</optional>
373     </dependency>
374
375     <dependency>
376       <groupId>org.codehaus.enunciate</groupId>
377       <artifactId>enunciate-core-annotations</artifactId>
378     </dependency>
379
380     <dependency>
381       <groupId>org.codehaus.jettison</groupId>
382       <artifactId>jettison</artifactId>
383     </dependency>
384     <dependency>
385       <groupId>org.jboss.spec.javax.transaction</groupId>
386       <artifactId>jboss-transaction-api_1.1_spec</artifactId>
387     </dependency>
388     <dependency>
389       <groupId>org.opendaylight.controller</groupId>
390       <artifactId>arphandler</artifactId>
391       <version>${arphandler.version}</version>
392     </dependency>
393     <dependency>
394       <groupId>org.opendaylight.controller</groupId>
395       <artifactId>bundlescanner</artifactId>
396       <version>${bundlescanner.version}</version>
397     </dependency>
398     <dependency>
399       <groupId>org.opendaylight.controller</groupId>
400       <artifactId>bundlescanner.implementation</artifactId>
401       <version>${bundlescanner.implementation.version}</version>
402     </dependency>
403     <dependency>
404       <groupId>org.opendaylight.controller</groupId>
405       <artifactId>clustering.services</artifactId>
406       <version>${clustering.services.version}</version>
407     </dependency>
408     <dependency>
409       <groupId>org.opendaylight.controller</groupId>
410       <artifactId>clustering.services-implementation</artifactId>
411       <version>${clustering.services_implementation.version}</version>
412     </dependency>
413     <dependency>
414       <groupId>org.opendaylight.controller</groupId>
415       <artifactId>commons.httpclient</artifactId>
416       <version>${commons.httpclient.version}</version>
417     </dependency>
418     <dependency>
419       <groupId>org.opendaylight.controller</groupId>
420       <artifactId>commons.northbound</artifactId>
421       <version>${northbound.commons.version}</version>
422     </dependency>
423     <dependency>
424       <groupId>org.opendaylight.controller</groupId>
425       <artifactId>configuration</artifactId>
426       <version>${configuration.version}</version>
427     </dependency>
428     <dependency>
429       <groupId>org.opendaylight.controller</groupId>
430       <artifactId>configuration.implementation</artifactId>
431       <version>${configuration.implementation.version}</version>
432     </dependency>
433     <dependency>
434       <groupId>org.opendaylight.controller</groupId>
435       <artifactId>connectionmanager</artifactId>
436       <version>${connectionmanager.version}</version>
437     </dependency>
438     <dependency>
439       <groupId>org.opendaylight.controller</groupId>
440       <artifactId>connectionmanager.implementation</artifactId>
441       <version>${connectionmanager.version}</version>
442     </dependency>
443     <dependency>
444       <groupId>org.opendaylight.controller</groupId>
445       <artifactId>containermanager</artifactId>
446       <version>${containermanager.it.version}</version>
447     </dependency>
448     <dependency>
449       <groupId>org.opendaylight.controller</groupId>
450       <artifactId>containermanager.it.implementation</artifactId>
451       <version>${containermanager.it.version}</version>
452     </dependency>
453     <dependency>
454       <groupId>org.opendaylight.controller</groupId>
455       <artifactId>flowprogrammer.northbound</artifactId>
456       <version>${flowprogrammer.northbound.version}</version>
457     </dependency>
458     <dependency>
459       <groupId>org.opendaylight.controller</groupId>
460       <artifactId>forwarding.staticrouting</artifactId>
461       <version>${forwarding.staticrouting}</version>
462     </dependency>
463     <dependency>
464       <groupId>org.opendaylight.controller</groupId>
465       <artifactId>forwarding.staticrouting.northbound</artifactId>
466       <version>${forwarding.staticrouting.northbound.version}</version>
467     </dependency>
468     <dependency>
469       <groupId>org.opendaylight.controller</groupId>
470       <artifactId>forwardingrulesmanager</artifactId>
471       <version>${forwardingrulesmanager.version}</version>
472     </dependency>
473     <dependency>
474       <groupId>org.opendaylight.controller</groupId>
475       <artifactId>forwardingrulesmanager.implementation</artifactId>
476       <version>${forwardingrulesmanager.implementation.version}</version>
477     </dependency>
478     <dependency>
479       <groupId>org.opendaylight.controller</groupId>
480       <artifactId>hosttracker</artifactId>
481       <version>${hosttracker.api.version}</version>
482     </dependency>
483     <dependency>
484       <groupId>org.opendaylight.controller</groupId>
485       <artifactId>hosttracker.implementation</artifactId>
486       <version>${hosttracker.implementation.version}</version>
487     </dependency>
488     <dependency>
489       <groupId>org.opendaylight.controller</groupId>
490       <artifactId>hosttracker.northbound</artifactId>
491       <version>${hosttracker.northbound.version}</version>
492     </dependency>
493     <dependency>
494       <groupId>org.opendaylight.controller</groupId>
495       <artifactId>logging.bridge</artifactId>
496       <version>${logging.bridge.version}</version>
497     </dependency>
498     <dependency>
499       <groupId>org.opendaylight.controller</groupId>
500       <artifactId>protocol_plugins.stub</artifactId>
501       <version>${protocol_plugins.stub.version}</version>
502     </dependency>
503     <dependency>
504       <groupId>org.opendaylight.controller</groupId>
505       <artifactId>routing.dijkstra_implementation</artifactId>
506       <version>${routing.dijkstra_implementation.version}</version>
507     </dependency>
508     <dependency>
509       <groupId>org.opendaylight.controller</groupId>
510       <artifactId>sal</artifactId>
511       <version>${sal.version}</version>
512     </dependency>
513     <dependency>
514       <groupId>org.opendaylight.controller</groupId>
515       <artifactId>sal.implementation</artifactId>
516       <version>${sal.implementation.version}</version>
517     </dependency>
518     <dependency>
519       <groupId>org.opendaylight.controller</groupId>
520       <artifactId>sal-binding-it</artifactId>
521       <version>${mdsal.version}</version>
522     </dependency>
523     <dependency>
524       <groupId>org.opendaylight.controller</groupId>
525       <artifactId>security</artifactId>
526       <version>${security.version}</version>
527     </dependency>
528     <dependency>
529       <groupId>org.opendaylight.controller</groupId>
530       <artifactId>statistics.northbound</artifactId>
531       <version>${statistics.northbound.version}</version>
532     </dependency>
533     <dependency>
534       <groupId>org.opendaylight.controller</groupId>
535       <artifactId>statisticsmanager</artifactId>
536       <version>${statisticsmanager.version}</version>
537     </dependency>
538     <dependency>
539       <groupId>org.opendaylight.controller</groupId>
540       <artifactId>statisticsmanager.implementation</artifactId>
541       <version>${statisticsmanager.implementation.version}</version>
542     </dependency>
543     <dependency>
544       <groupId>org.opendaylight.controller</groupId>
545       <artifactId>subnets.northbound</artifactId>
546       <version>${subnets.northbound.version}</version>
547     </dependency>
548     <dependency>
549       <groupId>org.opendaylight.controller</groupId>
550       <artifactId>switchmanager</artifactId>
551       <version>${switchmanager.api.version}</version>
552     </dependency>
553     <dependency>
554       <groupId>org.opendaylight.controller</groupId>
555       <artifactId>switchmanager.implementation</artifactId>
556       <version>${switchmanager.implementation.version}</version>
557     </dependency>
558     <dependency>
559       <groupId>org.opendaylight.controller</groupId>
560       <artifactId>switchmanager.northbound</artifactId>
561       <version>${switchmanager.northbound.version}</version>
562     </dependency>
563     <dependency>
564       <groupId>org.opendaylight.controller</groupId>
565       <artifactId>topology.northbound</artifactId>
566       <version>${topology.northbound.version}</version>
567     </dependency>
568     <dependency>
569       <groupId>org.opendaylight.controller</groupId>
570       <artifactId>topologymanager</artifactId>
571       <version>${topologymanager.version}</version>
572     </dependency>
573     <dependency>
574       <groupId>org.opendaylight.controller</groupId>
575       <artifactId>usermanager</artifactId>
576       <version>${usermanager.version}</version>
577     </dependency>
578     <dependency>
579       <groupId>org.opendaylight.controller</groupId>
580       <artifactId>usermanager.implementation</artifactId>
581       <version>${usermanager.implementation.version}</version>
582     </dependency>
583     <dependency>
584       <groupId>org.opendaylight.controller.thirdparty</groupId>
585       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
586       <version>${jersey-servlet.version}</version>
587     </dependency>
588     <dependency>
589       <groupId>org.opendaylight.controller.thirdparty</groupId>
590       <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
591       <version>${corsfilter.version}</version>
592     </dependency>
593     <dependency>
594       <groupId>org.ow2.asm</groupId>
595       <artifactId>asm-all</artifactId>
596       <version>${asm.version}</version>
597     </dependency>
598     <!-- Visual VM hook -->
599     <dependency>
600       <groupId>org.ow2.chameleon.management</groupId>
601       <artifactId>chameleon-mbeans</artifactId>
602     </dependency>
603     <dependency>
604       <groupId>org.slf4j</groupId>
605       <artifactId>jcl-over-slf4j</artifactId>
606     </dependency>
607     <dependency>
608       <groupId>org.slf4j</groupId>
609       <artifactId>log4j-over-slf4j</artifactId>
610     </dependency>
611     <dependency>
612       <groupId>org.slf4j</groupId>
613       <artifactId>slf4j-api</artifactId>
614     </dependency>
615     <dependency>
616       <groupId>org.springframework</groupId>
617       <artifactId>org.springframework.aop</artifactId>
618     </dependency>
619     <dependency>
620       <groupId>org.springframework</groupId>
621       <artifactId>org.springframework.asm</artifactId>
622     </dependency>
623     <dependency>
624       <groupId>org.springframework</groupId>
625       <artifactId>org.springframework.beans</artifactId>
626     </dependency>
627     <dependency>
628       <groupId>org.springframework</groupId>
629       <artifactId>org.springframework.context</artifactId>
630     </dependency>
631     <dependency>
632       <groupId>org.springframework</groupId>
633       <artifactId>org.springframework.context.support</artifactId>
634     </dependency>
635     <dependency>
636       <groupId>org.springframework</groupId>
637       <artifactId>org.springframework.core</artifactId>
638     </dependency>
639     <dependency>
640       <groupId>org.springframework</groupId>
641       <artifactId>org.springframework.expression</artifactId>
642     </dependency>
643     <dependency>
644       <groupId>org.springframework</groupId>
645       <artifactId>org.springframework.transaction</artifactId>
646     </dependency>
647     <dependency>
648       <groupId>org.springframework</groupId>
649       <artifactId>org.springframework.web</artifactId>
650     </dependency>
651     <dependency>
652       <groupId>org.springframework</groupId>
653       <artifactId>org.springframework.web.servlet</artifactId>
654     </dependency>
655     <dependency>
656       <groupId>org.springframework.security</groupId>
657       <artifactId>spring-security-config</artifactId>
658     </dependency>
659     <dependency>
660       <groupId>org.springframework.security</groupId>
661       <artifactId>spring-security-core</artifactId>
662     </dependency>
663     <dependency>
664       <groupId>org.springframework.security</groupId>
665       <artifactId>spring-security-taglibs</artifactId>
666     </dependency>
667     <dependency>
668       <groupId>org.springframework.security</groupId>
669       <artifactId>spring-security-web</artifactId>
670     </dependency>
671     <dependency>
672       <groupId>virgomirror</groupId>
673       <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
674     </dependency>
675     <dependency>
676       <groupId>junit</groupId>
677       <artifactId>junit</artifactId>
678     </dependency>
679     <dependency>
680       <groupId>org.opendaylight.ovsdb</groupId>
681       <artifactId>library</artifactId>
682     </dependency>
683     <dependency>
684       <groupId>org.opendaylight.ovsdb</groupId>
685       <artifactId>northbound</artifactId>
686     </dependency>
687     <dependency>
688       <groupId>org.opendaylight.ovsdb</groupId>
689       <artifactId>openstack.net-virt</artifactId>
690     </dependency>
691     <dependency>
692       <groupId>org.opendaylight.ovsdb</groupId>
693       <artifactId>ovsdb-plugin-compatibility-layer</artifactId>
694     </dependency>
695     <dependency>
696       <groupId>org.opendaylight.ovsdb</groupId>
697       <artifactId>plugin</artifactId>
698     </dependency>
699     <dependency>
700       <groupId>org.opendaylight.ovsdb</groupId>
701       <artifactId>schema.hardwarevtep</artifactId>
702     </dependency>
703     <dependency>
704       <groupId>org.opendaylight.ovsdb</groupId>
705       <artifactId>schema.openvswitch</artifactId>
706     </dependency>
707     <dependency>
708       <groupId>org.opendaylight.ovsdb</groupId>
709       <artifactId>utils.servicehelper</artifactId>
710     </dependency>
711
712     <!-- Add Pax Exam -->
713     <dependency>
714       <groupId>org.ops4j.pax.exam</groupId>
715       <artifactId>pax-exam-junit4</artifactId>
716     </dependency>
717     <dependency>
718       <groupId>org.ops4j.pax.exam</groupId>
719       <artifactId>pax-exam-link-mvn</artifactId>
720     </dependency>
721     <dependency>
722       <groupId>org.ops4j.pax.url</groupId>
723       <artifactId>pax-url-aether</artifactId>
724     </dependency>
725   </dependencies>
726
727   <build>
728     <plugins>
729       <plugin>
730         <groupId>org.codehaus.mojo</groupId>
731         <artifactId>properties-maven-plugin</artifactId>
732         <version>${propertymavenplugin.version}</version>
733         <executions>
734           <execution>
735             <goals>
736               <goal>set-system-properties</goal>
737             </goals>
738             <configuration>
739               <properties>
740                 <property>
741                   <name>logback.configurationFile</name>
742                   <!--<value>${project.parent.basedir}/logback.xml</value>-->
743                 </property>
744               </properties>
745             </configuration>
746           </execution>
747         </executions>
748       </plugin>
749       <plugin>
750         <groupId>org.ops4j.pax.exam</groupId>
751         <artifactId>maven-paxexam-plugin</artifactId>
752         <version>1.2.4</version>
753         <executions>
754           <execution>
755             <id>generate-config</id>
756             <phase>none</phase>
757             <goals>
758               <goal>generate-depends-file</goal>
759             </goals>
760           </execution>
761         </executions>
762       </plugin>
763     </plugins>
764   </build>
765   <scm>
766     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
767     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
768     <tag>HEAD</tag>
769     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
770   </scm>
771 </project>