Remove odlparent overrides
[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       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.slf4j</groupId>
66       <artifactId>slf4j-simple</artifactId>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70   <build>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.felix</groupId>
74         <artifactId>maven-bundle-plugin</artifactId>
75         <extensions>true</extensions>
76         <configuration>
77           <instructions>
78             <Export-Package>
79               org.opendaylight.ovsdb.utils.servicehelper
80             </Export-Package>
81           </instructions>
82         </configuration>
83       </plugin>
84       <plugin>
85         <groupId>org.jacoco</groupId>
86         <artifactId>jacoco-maven-plugin</artifactId>
87         <executions>
88           <execution>
89             <id>default-instrument</id>
90             <goals>
91               <goal>instrument</goal>
92             </goals>
93           </execution>
94           <execution>
95             <id>default-restore-instrumented-classes</id>
96             <goals>
97               <goal>restore-instrumented-classes</goal>
98             </goals>
99           </execution>
100         </executions>
101       </plugin>
102     </plugins>
103   </build>
104
105   <!--
106       Maven Site Configuration
107
108       The following configuration is necessary for maven-site-plugin to
109       correctly identify the correct deployment path for OpenDaylight Maven
110       sites.
111   -->
112   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
113
114   <distributionManagement>
115     <site>
116       <id>opendaylight-site</id>
117       <url>${nexus.site.url}/${project.artifactId}/</url>
118     </site>
119   </distributionManagement>
120 </project>