029c4c6044a35b0a15926ca090992c12b3062218
[ovsdb.git] / utils / config / 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.5.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.config</artifactId>
23   <name>${project.artifactId}</name>
24   <version>1.3.0-SNAPSHOT</version>
25   <packaging>jar</packaging>
26   <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>
27   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
28   <licenses>
29     <license>
30       <name>Eclipse Public License v1.0</name>
31       <url>http://www.eclipse.org/legal/epl-v10.html</url>
32     </license>
33   </licenses>
34   <developers>
35     <developer>
36       <name>Sam Hague</name>
37       <email>shague@gmail.com</email>
38       <url>https://github.com/shague</url>
39     </developer>
40   </developers>
41   <scm>
42     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
43     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
44     <tag>HEAD</tag>
45     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
46   </scm>
47
48   <dependencies>
49     <!-- testing dependencies -->
50     <dependency>
51       <groupId>org.mockito</groupId>
52       <artifactId>mockito-core</artifactId>
53       <version>1.10.19</version>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.powermock</groupId>
58       <artifactId>powermock-api-mockito</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.powermock</groupId>
63       <artifactId>powermock-core</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.powermock</groupId>
68       <artifactId>powermock-module-junit4</artifactId>
69       <scope>test</scope>
70     </dependency>
71   </dependencies>
72
73   <build>
74     <plugins>
75       <plugin>
76         <groupId>org.jacoco</groupId>
77         <artifactId>jacoco-maven-plugin</artifactId>
78         <executions>
79           <execution>
80             <id>default-instrument</id>
81             <goals>
82               <goal>instrument</goal>
83             </goals>
84           </execution>
85           <execution>
86             <id>default-restore-instrumented-classes</id>
87             <goals>
88               <goal>restore-instrumented-classes</goal>
89             </goals>
90           </execution>
91         </executions>
92       </plugin>
93     </plugins>
94   </build>
95 </project>