Extract neutron-utils from mdsal-utils
[netvirt.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.mdsal</groupId>
8     <artifactId>binding-parent</artifactId>
9     <version>0.8.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     <dependency>
34       <groupId>com.google.guava</groupId>
35       <artifactId>guava</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-binding-api</artifactId>
40       <version>1.3.0-SNAPSHOT</version>
41     </dependency>
42     <dependency>
43       <groupId>org.slf4j</groupId>
44       <artifactId>slf4j-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.slf4j</groupId>
48       <artifactId>slf4j-simple</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>junit</groupId>
53       <artifactId>junit</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.mockito</groupId>
58       <artifactId>mockito-all</artifactId>
59       <scope>test</scope>
60     </dependency>
61   </dependencies>
62
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.apache.felix</groupId>
67         <artifactId>maven-bundle-plugin</artifactId>
68         <extensions>true</extensions>
69         <configuration>
70           <instructions>
71             <Export-Package>
72               org.opendaylight.ovsdb.utils.mdsal.utils
73             </Export-Package>
74           </instructions>
75         </configuration>
76       </plugin>
77     </plugins>
78   </build>
79 </project>