Bump versions by x.y.(z+1)
[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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.ovsdb</groupId>
14     <artifactId>ovsdb-binding-parent</artifactId>
15     <version>1.10.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>utils.config</artifactId>
21   <version>1.10.0-SNAPSHOT</version>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: ovsdb :: ${project.artifactId}</name>
25   <packaging>bundle</packaging>
26
27   <dependencies>
28     <dependency>
29       <groupId>org.osgi</groupId>
30       <artifactId>org.osgi.core</artifactId>
31     </dependency>
32
33     <!-- testing dependencies -->
34     <dependency>
35       <groupId>org.mockito</groupId>
36       <artifactId>mockito-core</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.powermock</groupId>
41       <artifactId>powermock-api-mockito2</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.powermock</groupId>
46       <artifactId>powermock-core</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.powermock</groupId>
51       <artifactId>powermock-module-junit4</artifactId>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.jacoco</groupId>
60         <artifactId>jacoco-maven-plugin</artifactId>
61         <executions>
62           <execution>
63             <id>default-instrument</id>
64             <goals>
65               <goal>instrument</goal>
66             </goals>
67           </execution>
68           <execution>
69             <id>default-restore-instrumented-classes</id>
70             <goals>
71               <goal>restore-instrumented-classes</goal>
72             </goals>
73           </execution>
74         </executions>
75       </plugin>
76     </plugins>
77   </build>
78
79   <!--
80       Maven Site Configuration
81
82       The following configuration is necessary for maven-site-plugin to
83       correctly identify the correct deployment path for OpenDaylight Maven
84       sites.
85   -->
86   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
87
88   <distributionManagement>
89     <site>
90       <id>opendaylight-site</id>
91       <url>${nexus.site.url}/${project.artifactId}/</url>
92     </site>
93   </distributionManagement>
94 </project>