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