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.8.1-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.8.1-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>junit</groupId>
30       <artifactId>junit</artifactId>
31       <scope>test</scope>
32     </dependency>
33     <dependency>
34       <groupId>org.osgi</groupId>
35       <artifactId>org.osgi.core</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.slf4j</groupId>
39       <artifactId>slf4j-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.powermock</groupId>
43       <artifactId>powermock-api-mockito2</artifactId>
44       <version>1.7.4</version>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.javassist</groupId>
49       <artifactId>javassist</artifactId>
50       <version>3.21.0-GA</version>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.mockito</groupId>
55       <artifactId>mockito-core</artifactId>
56       <version>2.8.9</version>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.powermock</groupId>
61       <artifactId>powermock-core</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.powermock</groupId>
66       <artifactId>powermock-module-junit4</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.springframework.osgi</groupId>
71       <artifactId>spring-osgi-mock</artifactId>
72       <version>1.2.1</version>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.slf4j</groupId>
77       <artifactId>slf4j-simple</artifactId>
78       <scope>test</scope>
79     </dependency>
80   </dependencies>
81   <build>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.felix</groupId>
85         <artifactId>maven-bundle-plugin</artifactId>
86         <extensions>true</extensions>
87         <configuration>
88           <instructions>
89             <Export-Package>
90               org.opendaylight.ovsdb.utils.servicehelper
91             </Export-Package>
92           </instructions>
93         </configuration>
94       </plugin>
95       <plugin>
96         <groupId>org.jacoco</groupId>
97         <artifactId>jacoco-maven-plugin</artifactId>
98         <executions>
99           <execution>
100             <id>default-instrument</id>
101             <goals>
102               <goal>instrument</goal>
103             </goals>
104           </execution>
105           <execution>
106             <id>default-restore-instrumented-classes</id>
107             <goals>
108               <goal>restore-instrumented-classes</goal>
109             </goals>
110           </execution>
111         </executions>
112       </plugin>
113     </plugins>
114   </build>
115
116   <!--
117       Maven Site Configuration
118
119       The following configuration is necessary for maven-site-plugin to
120       correctly identify the correct deployment path for OpenDaylight Maven
121       sites.
122   -->
123   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
124
125   <distributionManagement>
126     <site>
127       <id>opendaylight-site</id>
128       <url>${nexus.site.url}/${project.artifactId}/</url>
129     </site>
130   </distributionManagement>
131 </project>