Merge "Use ClusteredDataTreeListener in hwvtepsb"
[ovsdb.git] / utils / servicehelper / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2015 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>utils.servicehelper</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     <powermock.version>1.6.4</powermock.version>
49   </properties>
50
51   <dependencies>
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.osgi</groupId>
59       <artifactId>org.osgi.core</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.slf4j</groupId>
63       <artifactId>slf4j-api</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.mockito</groupId>
67       <artifactId>mockito-core</artifactId>
68       <version>1.10.19</version>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.powermock</groupId>
73       <artifactId>powermock-api-mockito</artifactId>
74       <scope>test</scope>
75       <version>${powermock.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>org.powermock</groupId>
79       <artifactId>powermock-core</artifactId>
80       <scope>test</scope>
81       <version>${powermock.version}</version>
82     </dependency>
83     <dependency>
84       <groupId>org.powermock</groupId>
85       <artifactId>powermock-module-junit4</artifactId>
86       <scope>test</scope>
87       <version>${powermock.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>org.springframework.osgi</groupId>
91       <artifactId>spring-osgi-mock</artifactId>
92       <version>1.2.1</version>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.slf4j</groupId>
97       <artifactId>slf4j-simple</artifactId>
98       <scope>test</scope>
99     </dependency>
100   </dependencies>
101   <build>
102     <plugins>
103       <plugin>
104         <groupId>org.apache.felix</groupId>
105         <artifactId>maven-bundle-plugin</artifactId>
106         <extensions>true</extensions>
107         <configuration>
108           <instructions>
109             <Export-Package>
110               org.opendaylight.ovsdb.utils.servicehelper
111             </Export-Package>
112           </instructions>
113         </configuration>
114       </plugin>
115       <plugin>
116         <groupId>org.jacoco</groupId>
117         <artifactId>jacoco-maven-plugin</artifactId>
118         <executions>
119           <execution>
120             <id>default-instrument</id>
121             <goals>
122               <goal>instrument</goal>
123             </goals>
124           </execution>
125           <execution>
126             <id>default-restore-instrumented-classes</id>
127             <goals>
128               <goal>restore-instrumented-classes</goal>
129             </goals>
130           </execution>
131         </executions>
132       </plugin>
133     </plugins>
134   </build>
135 </project>