Bump to odl-parent 2.0.0, remove karaf3 features and rename features4 to features
[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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.7.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.servicehelper</artifactId>
23   <version>1.5.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <!-- <name> formatting is used by autorelease to parse and notify projects on
26        build failure. Please do not modify this unless you have a good reason. -->
27   <name>ODL :: ovsdb :: ${project.artifactId}</name>
28
29   <dependencies>
30     <dependency>
31       <groupId>junit</groupId>
32       <artifactId>junit</artifactId>
33       <scope>test</scope>
34     </dependency>
35     <dependency>
36       <groupId>org.osgi</groupId>
37       <artifactId>org.osgi.core</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.slf4j</groupId>
41       <artifactId>slf4j-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.mockito</groupId>
45       <artifactId>mockito-core</artifactId>
46       <version>1.10.19</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.powermock</groupId>
51       <artifactId>powermock-api-mockito</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.powermock</groupId>
56       <artifactId>powermock-core</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.powermock</groupId>
61       <artifactId>powermock-module-junit4</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.springframework.osgi</groupId>
66       <artifactId>spring-osgi-mock</artifactId>
67       <version>1.2.1</version>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.slf4j</groupId>
72       <artifactId>slf4j-simple</artifactId>
73       <scope>test</scope>
74     </dependency>
75   </dependencies>
76   <build>
77     <plugins>
78       <plugin>
79         <groupId>org.apache.felix</groupId>
80         <artifactId>maven-bundle-plugin</artifactId>
81         <extensions>true</extensions>
82         <configuration>
83           <instructions>
84             <Export-Package>
85               org.opendaylight.ovsdb.utils.servicehelper
86             </Export-Package>
87           </instructions>
88         </configuration>
89       </plugin>
90       <plugin>
91         <groupId>org.jacoco</groupId>
92         <artifactId>jacoco-maven-plugin</artifactId>
93         <executions>
94           <execution>
95             <id>default-instrument</id>
96             <goals>
97               <goal>instrument</goal>
98             </goals>
99           </execution>
100           <execution>
101             <id>default-restore-instrumented-classes</id>
102             <goals>
103               <goal>restore-instrumented-classes</goal>
104             </goals>
105           </execution>
106         </executions>
107       </plugin>
108     </plugins>
109   </build>
110
111   <!--
112       Maven Site Configuration
113
114       The following configuration is necessary for maven-site-plugin to
115       correctly identify the correct deployment path for OpenDaylight Maven
116       sites.
117   -->
118   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
119
120   <distributionManagement>
121     <site>
122       <id>opendaylight-site</id>
123       <url>${nexus.site.url}/${project.artifactId}/</url>
124     </site>
125   </distributionManagement>
126 </project>