Integration of MDSAL into distribution
[controller.git] / opendaylight / arphandler / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.0-SNAPSHOT</version>
9     <relativePath>../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>arphandler</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>org.apache.felix</groupId>
20         <artifactId>maven-bundle-plugin</artifactId>
21         <version>2.3.6</version>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Import-Package>
26               org.opendaylight.controller.connectionmanager,
27               org.opendaylight.controller.sal.core,
28               org.opendaylight.controller.sal.utils,
29               org.opendaylight.controller.sal.packet,
30               org.opendaylight.controller.switchmanager,
31               org.opendaylight.controller.topologymanager,
32               org.opendaylight.controller.clustering.services,
33               org.opendaylight.controller.hosttracker,
34               org.opendaylight.controller.hosttracker.hostAware,
35               org.apache.felix.dm,
36               org.osgi.service.component,
37               org.slf4j
38             </Import-Package>
39             <Export-Package>
40               org.opendaylight.controller.arphandler
41             </Export-Package>
42             <Bundle-Activator>
43               org.opendaylight.controller.arphandler.internal.Activator
44             </Bundle-Activator>
45           </instructions>
46           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
47         </configuration>
48       </plugin>
49     </plugins>
50   </build>
51   <dependencies>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>switchmanager</artifactId>
55       <version>0.5.0-SNAPSHOT</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>connectionmanager</artifactId>
60       <version>0.1.0-SNAPSHOT</version>
61     </dependency>
62      <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>topologymanager</artifactId>
65       <version>0.4.0-SNAPSHOT</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>hosttracker</artifactId>
70       <version>0.4.0-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal</artifactId>
75       <version>0.5.0-SNAPSHOT</version>
76     </dependency>
77   </dependencies>
78 </project>