9de9f1be004df3f70531e5b353daf1a6eba9dcd5
[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.8.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.config</artifactId>
23   <version>1.6.0-SNAPSHOT</version>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: ovsdb :: ${project.artifactId}</name>
27   <packaging>jar</packaging>
28
29   <dependencies>
30     <!-- testing dependencies -->
31     <dependency>
32       <groupId>org.mockito</groupId>
33       <artifactId>mockito-core</artifactId>
34       <version>1.10.19</version>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.powermock</groupId>
39       <artifactId>powermock-api-mockito</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.powermock</groupId>
44       <artifactId>powermock-core</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.powermock</groupId>
49       <artifactId>powermock-module-junit4</artifactId>
50       <scope>test</scope>
51     </dependency>
52   </dependencies>
53
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.jacoco</groupId>
58         <artifactId>jacoco-maven-plugin</artifactId>
59         <executions>
60           <execution>
61             <id>default-instrument</id>
62             <goals>
63               <goal>instrument</goal>
64             </goals>
65           </execution>
66           <execution>
67             <id>default-restore-instrumented-classes</id>
68             <goals>
69               <goal>restore-instrumented-classes</goal>
70             </goals>
71           </execution>
72         </executions>
73       </plugin>
74     </plugins>
75   </build>
76
77   <!--
78       Maven Site Configuration
79
80       The following configuration is necessary for maven-site-plugin to
81       correctly identify the correct deployment path for OpenDaylight Maven
82       sites.
83   -->
84   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
85
86   <distributionManagement>
87     <site>
88       <id>opendaylight-site</id>
89       <url>${nexus.site.url}/${project.artifactId}/</url>
90     </site>
91   </distributionManagement>
92 </project>