Merge "Add UT for SouthboundMapper and SouthboundProvider"
[netvirt.git] / openstack / net-virt-sfc / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2015 Red Hat, Inc. and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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   <modelVersion>4.0.0</modelVersion>
22   <groupId>org.opendaylight.ovsdb</groupId>
23   <artifactId>openstack.net-virt-sfc-impl</artifactId>
24   <version>1.0.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <properties>
28     <sonar.jacoco.itReportPath>../it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
29   </properties>
30
31   <dependencies>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>openstack.net-virt-sfc-api</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37
38     <!-- Testing Dependencies -->
39     <dependency>
40       <groupId>junit</groupId>
41       <artifactId>junit</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.mockito</groupId>
46       <artifactId>mockito-all</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.codehaus.sonar-plugins.java</groupId>
51       <artifactId>sonar-jacoco-listeners</artifactId>
52       <version>${sonar-jacoco-listeners.version}</version>
53       <scope>test</scope>
54     </dependency>
55   </dependencies>
56
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-surefire-plugin</artifactId>
62         <configuration>
63           <properties>
64             <property>
65               <name>listener</name>
66               <value>org.sonar.java.jacoco.JUnitListener</value>
67             </property>
68           </properties>
69         </configuration>
70       </plugin>
71       <plugin>
72         <groupId>org.jacoco</groupId>
73         <artifactId>jacoco-maven-plugin</artifactId>
74       </plugin>
75     </plugins>
76   </build>
77 </project>