Update to work on Sodium SR1
[l2switch.git] / hosttracker / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.l2switch</groupId>
6         <artifactId>l2switch-parent</artifactId>
7         <version>0.8.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10     <name>hosttracker-impl</name>
11     <groupId>org.opendaylight.l2switch.hosttracker</groupId>
12     <artifactId>hosttracker-impl</artifactId>
13     <packaging>bundle</packaging>
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19                 <extensions>true</extensions>
20                 <configuration>
21                     <instructions>
22                         <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.l2switch.host.tracker.impl.rev140528</Export-Package>
23                         <Import-Package>*</Import-Package>
24                     </instructions>
25                 </configuration>
26             </plugin>
27         </plugins>
28     </build>
29     <dependencies>
30         <dependency>
31             <groupId>org.slf4j</groupId>
32             <artifactId>slf4j-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.slf4j</groupId>
36             <artifactId>slf4j-simple</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.osgi</groupId>
40             <artifactId>org.osgi.core</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>sal-binding-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal-common-util</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.yangtools</groupId>
52             <artifactId>yang-common</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>yang-binding</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>com.google.code.findbugs</groupId>
60             <artifactId>jsr305</artifactId>
61             <optional>true</optional>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.controller.model</groupId>
65             <artifactId>model-inventory</artifactId>
66             <type>jar</type>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.l2switch.addresstracker</groupId>
70             <artifactId>addresstracker-model</artifactId>
71             <type>jar</type>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.l2switch.hosttracker</groupId>
75             <artifactId>hosttracker-model</artifactId>
76             <type>jar</type>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.mdsal.model</groupId>
80             <artifactId>ietf-topology</artifactId>
81         </dependency>
82     </dependencies>
83 </project>