Merge "L3: Add eth to br-ex"
[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.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   <properties>
33     <neutron.model.version>0.6.0-SNAPSHOT</neutron.model.version>
34   </properties>
35
36   <dependencies>
37     <dependency>
38       <groupId>com.google.guava</groupId>
39       <artifactId>guava</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-binding-api</artifactId>
44       <version>1.3.0-SNAPSHOT</version>
45     </dependency>
46     <dependency>
47       <groupId>org.slf4j</groupId>
48       <artifactId>slf4j-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.slf4j</groupId>
52       <artifactId>slf4j-simple</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>junit</groupId>
57       <artifactId>junit</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.mockito</groupId>
62       <artifactId>mockito-all</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.neutron</groupId>
67       <artifactId>model</artifactId>
68       <version>${neutron.model.version}</version>
69     </dependency>
70   </dependencies>
71
72   <build>
73     <plugins>
74       <plugin>
75         <groupId>org.apache.felix</groupId>
76         <artifactId>maven-bundle-plugin</artifactId>
77         <extensions>true</extensions>
78         <configuration>
79           <instructions>
80             <Export-Package>
81               org.opendaylight.ovsdb.utils.mdsal.utils
82             </Export-Package>
83           </instructions>
84         </configuration>
85       </plugin>
86     </plugins>
87   </build>
88 </project>