Merge "Clean up pom files"
[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     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.4.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <artifactId>utils.servicehelper</artifactId>
22   <version>1.2.1-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
25   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
26   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <properties>
47     <powermock.version>1.5.2</powermock.version>
48   </properties>
49
50   <dependencies>
51     <dependency>
52       <groupId>junit</groupId>
53       <artifactId>junit</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.osgi</groupId>
58       <artifactId>org.osgi.core</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.slf4j</groupId>
62       <artifactId>slf4j-api</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.mockito</groupId>
66       <artifactId>mockito-core</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.powermock</groupId>
71       <artifactId>powermock-api-mockito</artifactId>
72       <scope>test</scope>
73       <version>${powermock.version}</version>
74     </dependency>
75     <dependency>
76       <groupId>org.powermock</groupId>
77       <artifactId>powermock-core</artifactId>
78       <scope>test</scope>
79       <version>${powermock.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.powermock</groupId>
83       <artifactId>powermock-module-junit4</artifactId>
84       <scope>test</scope>
85       <version>${powermock.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>org.springframework.osgi</groupId>
89       <artifactId>spring-osgi-mock</artifactId>
90       <version>1.2.1</version>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.slf4j</groupId>
95       <artifactId>slf4j-simple</artifactId>
96       <scope>test</scope>
97     </dependency>
98   </dependencies>
99   <build>
100     <plugins>
101       <plugin>
102         <groupId>org.apache.felix</groupId>
103         <artifactId>maven-bundle-plugin</artifactId>
104         <extensions>true</extensions>
105         <configuration>
106           <instructions>
107             <Export-Package>
108               org.opendaylight.ovsdb.utils.servicehelper
109             </Export-Package>
110           </instructions>
111         </configuration>
112       </plugin>
113     </plugins>
114   </build>
115 </project>