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