ef5b52c89e3199057b33a6df69951d27fd506674
[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.5.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.ovsdb</groupId>
14   <artifactId>utils.mdsal-utils</artifactId>
15   <version>1.3.0-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     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-binding-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.ovsdb</groupId>
39       <artifactId>southbound-api</artifactId>
40       <version>${project.version}</version>
41     </dependency>
42
43     <!-- testing dependencies -->
44     <dependency>
45       <groupId>junit</groupId>
46       <artifactId>junit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.mockito</groupId>
51       <artifactId>mockito-all</artifactId>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.felix</groupId>
60         <artifactId>maven-bundle-plugin</artifactId>
61         <extensions>true</extensions>
62         <configuration>
63           <instructions>
64             <Export-Package>
65               org.opendaylight.ovsdb.utils.mdsal.utils
66             </Export-Package>
67           </instructions>
68         </configuration>
69       </plugin>
70     </plugins>
71   </build>
72 </project>