Merge "Add UT for SouthboundMapper and SouthboundProvider"
[netvirt.git] / openstack / net-virt-providers / 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   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.4.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <modelVersion>4.0.0</modelVersion>
19
20   <groupId>org.opendaylight.ovsdb</groupId>
21   <artifactId>openstack.net-virt-providers</artifactId>
22   <version>1.2.1-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <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>
25   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
26   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <properties>
47     <liblldp.version>0.10.0-SNAPSHOT</liblldp.version>
48     <networkconfig.neutron.version>0.6.0-SNAPSHOT</networkconfig.neutron.version>
49     <openflowjava-nicira.version>0.2.0-SNAPSHOT</openflowjava-nicira.version>
50     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
51     <ovsdb.utils.config.version>1.2.1-SNAPSHOT</ovsdb.utils.config.version>
52     <ovsdb.utils.mdsal.openflow.version>1.2.1-SNAPSHOT</ovsdb.utils.mdsal.openflow.version>
53     <ovsdb.utils.servicehelper.version>1.2.1-SNAPSHOT</ovsdb.utils.servicehelper.version>
54     <powermock.version>1.5.2</powermock.version>
55     <sonar.jacoco.itReportPath>../net-virt-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
56   </properties>
57
58   <dependencyManagement>
59     <dependencies>
60       <dependency>
61         <groupId>org.opendaylight.mdsal</groupId>
62         <artifactId>mdsal-artifacts</artifactId>
63         <version>2.0.0-SNAPSHOT</version>
64         <type>pom</type>
65         <scope>import</scope>
66       </dependency>
67       <dependency>
68         <groupId>org.opendaylight.mdsal.model</groupId>
69         <artifactId>mdsal-model-artifacts</artifactId>
70         <version>0.8.0-SNAPSHOT</version>
71         <type>pom</type>
72         <scope>import</scope>
73       </dependency>
74     </dependencies>
75   </dependencyManagement>
76
77   <dependencies>
78     <dependency>
79       <groupId>org.osgi</groupId>
80       <artifactId>org.osgi.core</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.google.guava</groupId>
84       <artifactId>guava</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>config-api</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>sal-binding-api</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller</groupId>
96       <artifactId>sal-binding-config</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>sal-common-api</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.controller.model</groupId>
104       <artifactId>model-inventory</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.neutron</groupId>
108       <artifactId>neutron-spi</artifactId>
109       <version>${networkconfig.neutron.version}</version>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.openflowplugin.model</groupId>
113       <artifactId>model-flow-base</artifactId>
114       <version>${openflowplugin.version}</version>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.openflowplugin.model</groupId>
118       <artifactId>model-flow-service</artifactId>
119       <version>${openflowplugin.version}</version>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.openflowplugin</groupId>
123       <artifactId>openflowjava-extension-nicira</artifactId>
124       <version>${openflowjava-nicira.version}</version>
125     </dependency>
126     <dependency>
127       <groupId>org.opendaylight.openflowplugin</groupId>
128       <artifactId>openflowplugin-extension-nicira</artifactId>
129       <version>${openflowplugin.version}</version>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.ovsdb</groupId>
133       <artifactId>openstack.net-virt</artifactId>
134       <version>${project.version}</version>
135     </dependency>
136     <dependency>
137       <groupId>org.opendaylight.ovsdb</groupId>
138       <artifactId>utils.mdsal-openflow</artifactId>
139       <version>${ovsdb.utils.mdsal.openflow.version}</version>
140     </dependency>
141     <dependency>
142       <groupId>org.opendaylight.mdsal</groupId>
143       <artifactId>yang-binding</artifactId>
144     </dependency>
145     <dependency>
146       <groupId>org.opendaylight.mdsal.model</groupId>
147       <artifactId>ietf-inet-types</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>org.opendaylight.mdsal.model</groupId>
151       <artifactId>ietf-yang-types</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>org.opendaylight.mdsal.model</groupId>
155       <artifactId>opendaylight-l2-types</artifactId>
156     </dependency>
157     <dependency>
158       <groupId>org.opendaylight.ovsdb</groupId>
159       <artifactId>utils.servicehelper</artifactId>
160       <version>${project.version}</version>
161     </dependency>
162     <dependency>
163       <groupId>org.opendaylight.yangtools</groupId>
164       <artifactId>concepts</artifactId>
165     </dependency>
166     <dependency>
167       <groupId>org.opendaylight.mdsal.model</groupId>
168       <artifactId>ietf-topology</artifactId>
169     </dependency>
170     <dependency>
171       <groupId>org.opendaylight.ovsdb</groupId>
172       <artifactId>southbound-api</artifactId>
173       <version>${project.version}</version>
174     </dependency>
175     <dependency>
176       <groupId>org.opendaylight.openflowplugin</groupId>
177       <artifactId>openflowplugin-api</artifactId>
178       <version>${openflowplugin.version}</version>
179     </dependency>
180     <dependency>
181       <groupId>org.slf4j</groupId>
182       <artifactId>slf4j-api</artifactId>
183     </dependency>
184     <dependency>
185        <groupId>org.opendaylight.controller</groupId>
186        <artifactId>liblldp</artifactId>
187        <version>${liblldp.version}</version>
188      </dependency>
189     <dependency>
190       <groupId>com.google.code.findbugs</groupId>
191       <artifactId>jsr305</artifactId>
192     </dependency>
193     <dependency>
194       <groupId>io.netty</groupId>
195       <artifactId>netty-buffer</artifactId>
196       <!-- Should be in a parent POM -->
197       <version>4.0.26.Final</version>
198     </dependency>
199     <dependency>
200       <groupId>org.apache.commons</groupId>
201       <artifactId>commons-lang3</artifactId>
202     </dependency>
203     <dependency>
204       <groupId>org.mockito</groupId>
205       <artifactId>mockito-core</artifactId>
206       <scope>test</scope>
207     </dependency>
208     <dependency>
209       <groupId>org.powermock</groupId>
210       <artifactId>powermock-core</artifactId>
211       <version>${powermock.version}</version>
212       <scope>test</scope>
213     </dependency>
214     <dependency>
215       <groupId>org.powermock</groupId>
216       <artifactId>powermock-module-junit4</artifactId>
217       <version>${powermock.version}</version>
218       <scope>test</scope>
219     </dependency>
220     <dependency>
221       <groupId>org.powermock</groupId>
222       <artifactId>powermock-api-mockito</artifactId>
223       <version>${powermock.version}</version>
224       <scope>test</scope>
225     </dependency>
226     <dependency>
227       <groupId>org.powermock</groupId>
228       <artifactId>powermock-api-support</artifactId>
229       <version>${powermock.version}</version>
230       <scope>test</scope>
231     </dependency>
232     <dependency>
233       <groupId>org.powermock</groupId>
234       <artifactId>powermock-reflect</artifactId>
235       <version>${powermock.version}</version>
236       <scope>test</scope>
237     </dependency>
238     <dependency>
239       <groupId>junit</groupId>
240       <artifactId>junit</artifactId>
241       <scope>test</scope>
242     </dependency>
243     <dependency>
244       <groupId>org.codehaus.sonar-plugins.java</groupId>
245       <artifactId>sonar-jacoco-listeners</artifactId>
246       <version>${sonar-jacoco-listeners.version}</version>
247       <scope>test</scope>
248     </dependency>
249     <dependency>
250       <groupId>org.slf4j</groupId>
251       <artifactId>slf4j-simple</artifactId>
252       <scope>test</scope>
253     </dependency>
254   </dependencies>
255
256   <build>
257     <plugins>
258       <plugin>
259         <groupId>org.apache.felix</groupId>
260         <artifactId>maven-bundle-plugin</artifactId>
261         <extensions>true</extensions>
262         <configuration>
263           <instructions>
264             <Embed-Dependency>utils.config,utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
265             <Embed-Transitive>true</Embed-Transitive>
266           </instructions>
267         </configuration>
268       </plugin>
269       <plugin>
270         <groupId>org.apache.maven.plugins</groupId>
271         <artifactId>maven-checkstyle-plugin</artifactId>
272       </plugin>
273       <plugin>
274         <groupId>org.apache.maven.plugins</groupId>
275         <artifactId>maven-surefire-plugin</artifactId>
276         <configuration>
277           <properties>
278             <property>
279               <name>listener</name>
280               <value>org.sonar.java.jacoco.JUnitListener</value>
281             </property>
282           </properties>
283         </configuration>
284       </plugin>
285       <plugin>
286         <groupId>org.jacoco</groupId>
287         <artifactId>jacoco-maven-plugin</artifactId>
288       </plugin>
289     </plugins>
290   </build>
291 </project>