Merge "Add UT for SouthboundMapper and SouthboundProvider"
[netvirt.git] / openstack / net-virt / 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.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.4.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>openstack.net-virt</artifactId>
23   <version>1.2.1-SNAPSHOT</version>
24   <packaging>bundle</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     <networkconfig.neutron.version>0.6.0-SNAPSHOT</networkconfig.neutron.version>
49     <ovsdb.utils.config.version>1.2.1-SNAPSHOT</ovsdb.utils.config.version>
50     <ovsdb.utils.servicehelper.version>1.2.1-SNAPSHOT</ovsdb.utils.servicehelper.version>
51     <powermock.version>1.5.2</powermock.version>
52     <sonar.jacoco.itReportPath>../net-virt-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
53   </properties>
54
55   <dependencyManagement>
56     <dependencies>
57       <dependency>
58         <groupId>org.opendaylight.mdsal</groupId>
59         <artifactId>mdsal-artifacts</artifactId>
60         <version>2.0.0-SNAPSHOT</version>
61         <type>pom</type>
62         <scope>import</scope>
63       </dependency>
64       <dependency>
65         <groupId>org.opendaylight.mdsal.model</groupId>
66         <artifactId>mdsal-model-artifacts</artifactId>
67         <version>0.8.0-SNAPSHOT</version>
68         <type>pom</type>
69         <scope>import</scope>
70       </dependency>
71     </dependencies>
72   </dependencyManagement>
73
74   <dependencies>
75     <dependency>
76       <groupId>org.apache.commons</groupId>
77       <artifactId>commons-lang3</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.osgi</groupId>
81       <artifactId>org.osgi.core</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>com.google.guava</groupId>
85       <artifactId>guava</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>config-api</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>sal-binding-api</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.controller</groupId>
97       <artifactId>sal-binding-config</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>sal-common-api</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.neutron</groupId>
105       <artifactId>neutron-spi</artifactId>
106       <version>${networkconfig.neutron.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.ovsdb</groupId>
110       <artifactId>southbound-api</artifactId>
111       <version>1.2.1-SNAPSHOT</version>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.ovsdb</groupId>
115       <artifactId>utils.config</artifactId>
116       <version>${ovsdb.utils.config.version}</version>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.ovsdb</groupId>
120       <artifactId>utils.servicehelper</artifactId>
121       <version>${ovsdb.utils.servicehelper.version}</version>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.yangtools</groupId>
125       <artifactId>yang-common</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>org.opendaylight.yangtools</groupId>
129       <artifactId>concepts</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.mdsal.model</groupId>
133       <artifactId>ietf-inet-types</artifactId>
134     </dependency>
135     <dependency>
136       <groupId>org.opendaylight.mdsal.model</groupId>
137       <artifactId>ietf-topology</artifactId>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.mdsal.model</groupId>
141       <artifactId>opendaylight-l2-types</artifactId>
142     </dependency>
143     <dependency>
144       <groupId>org.opendaylight.mdsal.model</groupId>
145       <artifactId>ietf-yang-types-20130715</artifactId>
146     </dependency>
147     <dependency>
148       <groupId>org.opendaylight.mdsal.model</groupId>
149       <artifactId>ietf-yang-types</artifactId>
150     </dependency>
151     <dependency>
152       <groupId>org.slf4j</groupId>
153       <artifactId>slf4j-api</artifactId>
154     </dependency>
155     <dependency>
156       <groupId>org.mockito</groupId>
157       <artifactId>mockito-core</artifactId>
158       <scope>test</scope>
159     </dependency>
160     <dependency>
161       <groupId>org.powermock</groupId>
162       <artifactId>powermock-core</artifactId>
163       <version>${powermock.version}</version>
164       <scope>test</scope>
165     </dependency>
166     <dependency>
167       <groupId>org.powermock</groupId>
168       <artifactId>powermock-module-junit4</artifactId>
169       <version>${powermock.version}</version>
170       <scope>test</scope>
171     </dependency>
172     <dependency>
173       <groupId>org.powermock</groupId>
174       <artifactId>powermock-api-mockito</artifactId>
175       <version>${powermock.version}</version>
176       <scope>test</scope>
177     </dependency>
178     <dependency>
179       <groupId>org.powermock</groupId>
180       <artifactId>powermock-api-support</artifactId>
181       <version>${powermock.version}</version>
182       <scope>test</scope>
183     </dependency>
184     <dependency>
185       <groupId>org.powermock</groupId>
186       <artifactId>powermock-reflect</artifactId>
187       <version>${powermock.version}</version>
188       <scope>test</scope>
189     </dependency>
190     <dependency>
191       <groupId>junit</groupId>
192       <artifactId>junit</artifactId>
193       <scope>test</scope>
194     </dependency>
195     <dependency>
196       <groupId>org.codehaus.sonar-plugins.java</groupId>
197       <artifactId>sonar-jacoco-listeners</artifactId>
198       <version>${sonar-jacoco-listeners.version}</version>
199       <scope>test</scope>
200     </dependency>
201     <dependency>
202       <groupId>org.slf4j</groupId>
203       <artifactId>slf4j-simple</artifactId>
204       <scope>test</scope>
205     </dependency>
206   </dependencies>
207   <build>
208     <plugins>
209       <plugin>
210         <groupId>org.apache.felix</groupId>
211         <artifactId>maven-bundle-plugin</artifactId>
212         <extensions>true</extensions>
213         <configuration>
214           <instructions>
215             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
216             <Embed-Transitive>true</Embed-Transitive>
217             <Export-Package>
218               org.opendaylight.ovsdb.openstack.netvirt.api,
219               org.opendaylight.ovsdb.openstack.netvirt
220             </Export-Package>
221           </instructions>
222         </configuration>
223       </plugin>
224       <plugin>
225         <groupId>org.apache.maven.plugins</groupId>
226         <artifactId>maven-checkstyle-plugin</artifactId>
227       </plugin>
228       <plugin>
229         <groupId>org.apache.maven.plugins</groupId>
230         <artifactId>maven-surefire-plugin</artifactId>
231         <configuration>
232           <properties>
233             <property>
234               <name>listener</name>
235               <value>org.sonar.java.jacoco.JUnitListener</value>
236             </property>
237           </properties>
238         </configuration>
239       </plugin>
240       <plugin>
241         <groupId>org.jacoco</groupId>
242         <artifactId>jacoco-maven-plugin</artifactId>
243       </plugin>
244     </plugins>
245   </build>
246 </project>