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