Bump versions by x.(y+1).z
[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.14.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.14.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>osgi.core</artifactId>
31     </dependency>
32
33     <!-- testing dependencies -->
34     <dependency>
35       <groupId>org.powermock</groupId>
36       <artifactId>powermock-api-mockito2</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.powermock</groupId>
40       <artifactId>powermock-module-junit4</artifactId>
41     </dependency>
42   </dependencies>
43
44   <build>
45     <plugins>
46       <plugin>
47         <groupId>org.jacoco</groupId>
48         <artifactId>jacoco-maven-plugin</artifactId>
49         <executions>
50           <execution>
51             <id>default-instrument</id>
52             <goals>
53               <goal>instrument</goal>
54             </goals>
55           </execution>
56           <execution>
57             <id>default-restore-instrumented-classes</id>
58             <goals>
59               <goal>restore-instrumented-classes</goal>
60             </goals>
61           </execution>
62         </executions>
63       </plugin>
64     </plugins>
65   </build>
66
67   <!--
68       Maven Site Configuration
69
70       The following configuration is necessary for maven-site-plugin to
71       correctly identify the correct deployment path for OpenDaylight Maven
72       sites.
73   -->
74   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
75
76   <distributionManagement>
77     <site>
78       <id>opendaylight-site</id>
79       <url>${nexus.site.url}/${project.artifactId}/</url>
80     </site>
81   </distributionManagement>
82 </project>