Make utils bundles use config-parent
[ovsdb.git] / utils / mdsal-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>config-parent</artifactId>
9     <version>0.4.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.ovsdb</groupId>
14   <artifactId>utils.mdsal-utils</artifactId>
15   <version>1.2.1-SNAPSHOT</version>
16   <packaging>bundle</packaging>
17
18   <developers>
19     <developer>
20       <name>Anil Vishnoi</name>
21       <email>vishnoianil@gmail.com</email>
22       <url>https://github.com/vishnoianil</url>
23     </developer>
24   </developers>
25   <scm>
26     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
27     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
28     <tag>HEAD</tag>
29     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
30   </scm>
31
32   <dependencies>
33     <!-- testing dependencies -->
34     <dependency>
35       <groupId>junit</groupId>
36       <artifactId>junit</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.mockito</groupId>
41       <artifactId>mockito-all</artifactId>
42       <scope>test</scope>
43     </dependency>
44   </dependencies>
45
46   <build>
47     <plugins>
48       <plugin>
49         <groupId>org.apache.felix</groupId>
50         <artifactId>maven-bundle-plugin</artifactId>
51         <extensions>true</extensions>
52         <configuration>
53           <instructions>
54             <Export-Package>
55               org.opendaylight.ovsdb.utils.mdsal.utils
56             </Export-Package>
57           </instructions>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62 </project>