Remove unneeded dependencies
[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
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.yangtools</groupId>
18             <artifactId>yang-common</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.mdsal</groupId>
22             <artifactId>yang-binding</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.mdsal</groupId>
26             <artifactId>mdsal-binding-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller.model</groupId>
30             <artifactId>model-inventory</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.l2switch.addresstracker</groupId>
34             <artifactId>addresstracker-model</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.l2switch.hosttracker</groupId>
38             <artifactId>hosttracker-model</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.mdsal.model</groupId>
42             <artifactId>ietf-topology</artifactId>
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>org.opendaylight.yang.gen.v1.urn.opendaylight.l2switch.host.tracker.impl.rev140528</Export-Package>
55                         <Import-Package>*</Import-Package>
56                     </instructions>
57                 </configuration>
58             </plugin>
59         </plugins>
60     </build>
61 </project>