Add binding-parent pom
[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.ovsdb</groupId>
16     <artifactId>ovsdb-binding-parent</artifactId>
17     <version>1.7.0-SNAPSHOT</version>
18     <relativePath>../../commons/binding-parent</relativePath>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.config</artifactId>
23   <version>1.7.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>bundle</packaging>
28
29   <dependencies>
30     <dependency>
31       <groupId>org.osgi</groupId>
32       <artifactId>org.osgi.core</artifactId>
33     </dependency>
34
35     <!-- testing dependencies -->
36     <dependency>
37       <groupId>org.mockito</groupId>
38       <artifactId>mockito-core</artifactId>
39       <version>1.10.19</version>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.powermock</groupId>
44       <artifactId>powermock-api-mockito</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.powermock</groupId>
49       <artifactId>powermock-core</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.powermock</groupId>
54       <artifactId>powermock-module-junit4</artifactId>
55       <scope>test</scope>
56     </dependency>
57   </dependencies>
58
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.jacoco</groupId>
63         <artifactId>jacoco-maven-plugin</artifactId>
64         <executions>
65           <execution>
66             <id>default-instrument</id>
67             <goals>
68               <goal>instrument</goal>
69             </goals>
70           </execution>
71           <execution>
72             <id>default-restore-instrumented-classes</id>
73             <goals>
74               <goal>restore-instrumented-classes</goal>
75             </goals>
76           </execution>
77         </executions>
78       </plugin>
79     </plugins>
80   </build>
81
82   <!--
83       Maven Site Configuration
84
85       The following configuration is necessary for maven-site-plugin to
86       correctly identify the correct deployment path for OpenDaylight Maven
87       sites.
88   -->
89   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
90
91   <distributionManagement>
92     <site>
93       <id>opendaylight-site</id>
94       <url>${nexus.site.url}/${project.artifactId}/</url>
95     </site>
96   </distributionManagement>
97 </project>