BUG-5737: enable OVSDB Maven site
[ovsdb.git] / utils / config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 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   <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   <dependencies>
48     <!-- testing dependencies -->
49     <dependency>
50       <groupId>org.mockito</groupId>
51       <artifactId>mockito-core</artifactId>
52       <version>1.10.19</version>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.powermock</groupId>
57       <artifactId>powermock-api-mockito</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.powermock</groupId>
62       <artifactId>powermock-core</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.powermock</groupId>
67       <artifactId>powermock-module-junit4</artifactId>
68       <scope>test</scope>
69     </dependency>
70   </dependencies>
71
72   <build>
73     <plugins>
74       <plugin>
75         <groupId>org.jacoco</groupId>
76         <artifactId>jacoco-maven-plugin</artifactId>
77         <executions>
78           <execution>
79             <id>default-instrument</id>
80             <goals>
81               <goal>instrument</goal>
82             </goals>
83           </execution>
84           <execution>
85             <id>default-restore-instrumented-classes</id>
86             <goals>
87               <goal>restore-instrumented-classes</goal>
88             </goals>
89           </execution>
90         </executions>
91       </plugin>
92     </plugins>
93   </build>
94
95   <!--
96       Maven Site Configuration
97
98       The following configuration is necessary for maven-site-plugin to
99       correctly identify the correct deployment path for OpenDaylight Maven
100       sites.
101   -->
102   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
103
104   <distributionManagement>
105     <site>
106       <id>opendaylight-site</id>
107       <url>${nexus.site.url}/${project.artifactId}/</url>
108     </site>
109   </distributionManagement>
110 </project>