Make utils.servicehelper a bundle
[ovsdb.git] / utils / servicehelper / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2015 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     <artifactId>commons</artifactId>
16     <groupId>org.opendaylight.ovsdb</groupId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../../commons/parent/pom.xml</relativePath>
19   </parent>
20
21   <artifactId>utils.servicehelper</artifactId>
22   <version>1.1.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>junit</groupId>
28       <artifactId>junit</artifactId>
29       <scope>test</scope>
30     </dependency>
31     <dependency>
32       <groupId>org.osgi</groupId>
33       <artifactId>org.osgi.core</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.slf4j</groupId>
37       <artifactId>slf4j-api</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.slf4j</groupId>
41       <artifactId>slf4j-simple</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.mockito</groupId>
46       <artifactId>mockito-core</artifactId>
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   </dependencies>
71   <build>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.felix</groupId>
75         <artifactId>maven-bundle-plugin</artifactId>
76         <extensions>true</extensions>
77       </plugin>
78       <plugin>
79         <groupId>org.apache.maven.plugins</groupId>
80         <artifactId>maven-checkstyle-plugin</artifactId>
81       </plugin>
82       <plugin>
83         <groupId>org.jacoco</groupId>
84         <artifactId>jacoco-maven-plugin</artifactId>
85       </plugin>
86     </plugins>
87   </build>
88 </project>