Merge "Clean up Maven dependencies (part 1)"
[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.0-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     <networkconfig.neutron.version>0.6.0-SNAPSHOT</networkconfig.neutron.version>
48     <openflowjava-nicira.version>0.2.0-SNAPSHOT</openflowjava-nicira.version>
49     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
50     <ovsdb.utils.config.version>1.2.0-SNAPSHOT</ovsdb.utils.config.version>
51     <ovsdb.utils.mdsal.openflow.version>1.2.0-SNAPSHOT</ovsdb.utils.mdsal.openflow.version>
52     <ovsdb.utils.servicehelper.version>1.2.0-SNAPSHOT</ovsdb.utils.servicehelper.version>
53     <powermock.version>1.5.2</powermock.version>
54     <sonar-jacoco-listeners.version>2.4</sonar-jacoco-listeners.version>
55     <liblldp.version>0.9.1-SNAPSHOT</liblldp.version>
56     <root.directory>${env.PWD}</root.directory>
57     <sonar.jacoco.itReportPath>${root.directory}/target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
58   </properties>
59   <dependencies>
60     <dependency>
61       <groupId>org.osgi</groupId>
62       <artifactId>org.osgi.core</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>com.google.guava</groupId>
66       <artifactId>guava</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>config-api</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-binding-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-binding-config</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal-common-api</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller.model</groupId>
86       <artifactId>model-inventory</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.neutron</groupId>
90       <artifactId>neutron-spi</artifactId>
91       <version>${networkconfig.neutron.version}</version>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.openflowplugin.model</groupId>
95       <artifactId>model-flow-base</artifactId>
96       <version>${openflowplugin.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.openflowplugin.model</groupId>
100       <artifactId>model-flow-service</artifactId>
101       <version>${openflowplugin.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.openflowplugin</groupId>
105       <artifactId>openflowjava-extension-nicira</artifactId>
106       <version>${openflowjava-nicira.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.openflowplugin</groupId>
110       <artifactId>openflowplugin-extension-nicira</artifactId>
111       <version>${openflowplugin.version}</version>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.ovsdb</groupId>
115       <artifactId>openstack.net-virt</artifactId>
116       <version>${project.version}</version>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.ovsdb</groupId>
120       <artifactId>utils.mdsal-openflow</artifactId>
121       <version>${ovsdb.utils.mdsal.openflow.version}</version>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.yangtools</groupId>
125       <artifactId>yang-binding</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>org.opendaylight.yangtools.model</groupId>
129       <artifactId>ietf-inet-types</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.yangtools.model</groupId>
133       <artifactId>ietf-yang-types</artifactId>
134     </dependency>
135     <dependency>
136       <groupId>org.opendaylight.yangtools.model</groupId>
137       <artifactId>opendaylight-l2-types</artifactId>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.ovsdb</groupId>
141       <artifactId>utils.servicehelper</artifactId>
142       <version>${project.version}</version>
143     </dependency>
144     <dependency>
145       <groupId>org.opendaylight.yangtools</groupId>
146       <artifactId>concepts</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>org.opendaylight.yangtools.model</groupId>
150       <artifactId>ietf-topology</artifactId>
151     </dependency>
152     <dependency>
153       <groupId>org.opendaylight.ovsdb</groupId>
154       <artifactId>southbound-api</artifactId>
155       <version>${project.version}</version>
156     </dependency>
157     <dependency>
158       <groupId>org.opendaylight.openflowplugin</groupId>
159       <artifactId>openflowplugin-api</artifactId>
160       <version>${openflowplugin.version}</version>
161     </dependency>
162     <dependency>
163       <groupId>org.slf4j</groupId>
164       <artifactId>slf4j-api</artifactId>
165     </dependency>
166     <dependency>
167        <groupId>org.opendaylight.controller</groupId>
168        <artifactId>liblldp</artifactId>
169        <version>${liblldp.version}</version>
170      </dependency>
171     <dependency>
172       <groupId>com.google.code.findbugs</groupId>
173       <artifactId>jsr305</artifactId>
174     </dependency>
175     <dependency>
176       <groupId>io.netty</groupId>
177       <artifactId>netty-buffer</artifactId>
178       <!-- Should be in a parent POM -->
179       <version>4.0.26.Final</version>
180     </dependency>
181     <dependency>
182       <groupId>org.apache.commons</groupId>
183       <artifactId>commons-lang3</artifactId>
184     </dependency>
185     <dependency>
186       <groupId>org.mockito</groupId>
187       <artifactId>mockito-core</artifactId>
188       <scope>test</scope>
189     </dependency>
190     <dependency>
191       <groupId>org.powermock</groupId>
192       <artifactId>powermock-core</artifactId>
193       <version>${powermock.version}</version>
194       <scope>test</scope>
195     </dependency>
196     <dependency>
197       <groupId>org.powermock</groupId>
198       <artifactId>powermock-module-junit4</artifactId>
199       <version>${powermock.version}</version>
200       <scope>test</scope>
201     </dependency>
202     <dependency>
203       <groupId>org.powermock</groupId>
204       <artifactId>powermock-api-mockito</artifactId>
205       <version>${powermock.version}</version>
206       <scope>test</scope>
207     </dependency>
208     <dependency>
209       <groupId>org.powermock</groupId>
210       <artifactId>powermock-api-support</artifactId>
211       <version>${powermock.version}</version>
212       <scope>test</scope>
213     </dependency>
214     <dependency>
215       <groupId>org.powermock</groupId>
216       <artifactId>powermock-reflect</artifactId>
217       <version>${powermock.version}</version>
218       <scope>test</scope>
219     </dependency>
220     <dependency>
221       <groupId>junit</groupId>
222       <artifactId>junit</artifactId>
223       <scope>test</scope>
224     </dependency>
225     <dependency>
226       <groupId>org.codehaus.sonar-plugins.java</groupId>
227       <artifactId>sonar-jacoco-listeners</artifactId>
228       <version>${sonar-jacoco-listeners.version}</version>
229       <scope>test</scope>
230     </dependency>
231   </dependencies>
232
233   <build>
234     <plugins>
235       <plugin>
236         <groupId>org.apache.felix</groupId>
237         <artifactId>maven-bundle-plugin</artifactId>
238         <extensions>true</extensions>
239         <configuration>
240           <instructions>
241             <Embed-Dependency>utils.config,utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
242             <Embed-Transitive>true</Embed-Transitive>
243           </instructions>
244         </configuration>
245       </plugin>
246       <plugin>
247         <groupId>org.apache.maven.plugins</groupId>
248         <artifactId>maven-checkstyle-plugin</artifactId>
249       </plugin>
250       <plugin>
251         <groupId>org.apache.maven.plugins</groupId>
252         <artifactId>maven-failsafe-plugin</artifactId>
253         <configuration>
254           <!-- Specific to generate mapping between tests and covered code -->
255           <!--<argLine>${jacoco.agent.it.arg}</argLine>-->
256           <properties>
257           <property>
258           <name>listener</name>
259           <value>org.sonar.java.jacoco.JUnitListener</value>
260           </property>
261           </properties>
262           <!-- Let's put failsafe reports with surefire to have access to tests failures/success reports in sonar -->
263           <!--<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>-->
264         </configuration>
265       </plugin>
266       <plugin>
267         <groupId>org.apache.maven.plugins</groupId>
268         <artifactId>maven-surefire-plugin</artifactId>
269         <configuration>
270           <!-- Specific to generate mapping between tests and covered code -->
271           <!--<argLine>${jacoco.agent.ut.arg}</argLine>-->
272           <properties>
273             <property>
274               <name>listener</name>
275               <value>org.sonar.java.jacoco.JUnitListener</value>
276             </property>
277           </properties>
278           <!-- Let's put failsafe reports with surefire to have access to tests failures/success reports in sonar -->
279           <!--<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>-->
280         </configuration>
281       </plugin>
282       <plugin>
283         <groupId>org.jacoco</groupId>
284         <artifactId>jacoco-maven-plugin</artifactId>
285         <executions>
286           <execution>
287             <id>prepare-ut-agent</id>
288             <goals>
289               <goal>prepare-agent</goal>
290             </goals>
291             <configuration>
292               <destFile>${sonar.jacoco.reportPath}</destFile>
293             </configuration>
294           </execution>
295           <execution>
296             <id>prepare-it-agent</id>
297             <goals>
298               <goal>prepare-agent-integration</goal>
299             </goals>
300             <configuration>
301               <append>true</append>
302               <destFile>${sonar.jacoco.itReportPath}</destFile>
303             </configuration>
304           </execution>
305           <execution>
306             <id>default-report</id>
307             <goals>
308               <goal>report</goal>
309             </goals>
310             <configuration>
311               <dataFile>${sonar.jacoco.reportPath}</dataFile>
312             </configuration>
313           </execution>
314           <execution>
315             <id>default-report-integration</id>
316             <goals>
317               <goal>report-integration</goal>
318             </goals>
319             <configuration>
320               <dataFile>${sonar.jacoco.itReportPath}</dataFile>
321             </configuration>
322           </execution>
323         </executions>
324       </plugin>
325     </plugins>
326   </build>
327 </project>