Bump versions by x.y.(z+1)
[ovsdb.git] / utils / servicehelper / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 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.servicehelper</artifactId>
21   <version>1.10.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: ovsdb :: ${project.artifactId}</name>
26
27   <dependencies>
28     <dependency>
29       <groupId>org.osgi</groupId>
30       <artifactId>org.osgi.core</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.slf4j</groupId>
34       <artifactId>slf4j-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.mockito</groupId>
38       <artifactId>mockito-core</artifactId>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.powermock</groupId>
43       <artifactId>powermock-api-mockito2</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.powermock</groupId>
48       <artifactId>powermock-core</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.powermock</groupId>
53       <artifactId>powermock-module-junit4</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.springframework.osgi</groupId>
58       <artifactId>spring-osgi-mock</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.slf4j</groupId>
63       <artifactId>slf4j-simple</artifactId>
64       <scope>test</scope>
65     </dependency>
66   </dependencies>
67   <build>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.felix</groupId>
71         <artifactId>maven-bundle-plugin</artifactId>
72         <extensions>true</extensions>
73         <configuration>
74           <instructions>
75             <Export-Package>
76               org.opendaylight.ovsdb.utils.servicehelper
77             </Export-Package>
78           </instructions>
79         </configuration>
80       </plugin>
81       <plugin>
82         <groupId>org.jacoco</groupId>
83         <artifactId>jacoco-maven-plugin</artifactId>
84         <executions>
85           <execution>
86             <id>default-instrument</id>
87             <goals>
88               <goal>instrument</goal>
89             </goals>
90           </execution>
91           <execution>
92             <id>default-restore-instrumented-classes</id>
93             <goals>
94               <goal>restore-instrumented-classes</goal>
95             </goals>
96           </execution>
97         </executions>
98       </plugin>
99     </plugins>
100   </build>
101
102   <!--
103       Maven Site Configuration
104
105       The following configuration is necessary for maven-site-plugin to
106       correctly identify the correct deployment path for OpenDaylight Maven
107       sites.
108   -->
109   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
110
111   <distributionManagement>
112     <site>
113       <id>opendaylight-site</id>
114       <url>${nexus.site.url}/${project.artifactId}/</url>
115     </site>
116   </distributionManagement>
117 </project>