Merge "Add JUnit testing for FloatingIPHandler class."
[ovsdb.git] / southbound / southbound-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2014 Cisco Systems, 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.3.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>southbound-it</artifactId>
20   <version>1.1.0-SNAPSHOT</version>
21   <packaging>jar</packaging>
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>${project.groupId}</groupId>
26         <artifactId>southbound-artifacts</artifactId>
27         <version>${project.version}</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31       <dependency>
32         <groupId>org.opendaylight.controller</groupId>
33         <artifactId>config-artifacts</artifactId>
34         <version>0.3.0-SNAPSHOT</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38       <dependency>
39         <groupId>org.opendaylight.controller</groupId>
40         <artifactId>mdsal-artifacts</artifactId>
41         <version>${mdsal.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45     </dependencies>
46   </dependencyManagement>
47   <dependencies>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-binding-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal-common-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>southbound-features</artifactId>
59       <classifier>features</classifier>
60       <type>xml</type>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>config-util</artifactId>
65     </dependency>
66     <!-- Dependencies for pax exam karaf container -->
67     <dependency>
68       <groupId>org.ops4j.pax.exam</groupId>
69       <artifactId>pax-exam-container-karaf</artifactId>
70       <scope>compile</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.ops4j.pax.exam</groupId>
74       <artifactId>pax-exam-junit4</artifactId>
75       <scope>compile</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.ops4j.pax.exam</groupId>
79       <artifactId>pax-exam</artifactId>
80       <scope>compile</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.ops4j.pax.url</groupId>
84       <artifactId>pax-url-aether</artifactId>
85       <scope>compile</scope>
86     </dependency>
87     <dependency>
88       <groupId>javax.inject</groupId>
89       <artifactId>javax.inject</artifactId>
90       <version>1</version>
91       <scope>compile</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.apache.karaf.features</groupId>
95       <artifactId>org.apache.karaf.features.core</artifactId>
96       <version>${karaf.version}</version>
97       <scope>compile</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.osgi</groupId>
101       <artifactId>org.osgi.core</artifactId>
102       <scope>compile</scope>
103     </dependency>
104     <dependency>
105       <groupId>junit</groupId>
106       <artifactId>junit</artifactId>
107       <scope>compile</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.apache.karaf.tooling</groupId>
111       <artifactId>karaf-maven-plugin</artifactId>
112       <version>${karaf.version}</version>
113     </dependency>
114   </dependencies>
115   <build>
116     <plugins>
117       <plugin>
118         <groupId>org.apache.maven.plugins</groupId>
119         <artifactId>maven-failsafe-plugin</artifactId>
120         <executions>
121           <execution>
122             <goals>
123               <goal>integration-test</goal>
124               <goal>verify</goal>
125             </goals>
126           </execution>
127         </executions>
128       </plugin>
129       <!-- Needed if you use versionAsInProject() -->
130       <plugin>
131         <groupId>org.apache.servicemix.tooling</groupId>
132         <artifactId>depends-maven-plugin</artifactId>
133         <version>1.2</version>
134         <executions>
135           <execution>
136             <id>generate-depends-file</id>
137             <goals>
138               <goal>generate-depends-file</goal>
139             </goals>
140           </execution>
141         </executions>
142       </plugin>
143       <plugin>
144         <groupId>org.apache.maven.plugins</groupId>
145         <artifactId>maven-checkstyle-plugin</artifactId>
146         <configuration>
147           <configLocation>
148             ${project.basedir}/../../commons/parent/src/main/resources/ovsdb_checks.xml
149           </configLocation>
150           <includeTestSourceDirectory>true</includeTestSourceDirectory>
151           <failsOnError>true</failsOnError>
152           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
153           <excludes>**/yang/</excludes>
154         </configuration>
155       </plugin>
156     </plugins>
157   </build>
158 </project>