e95512dcd0a7637f90223890df79d0a6f2abeb38
[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.sal.core,
27               org.opendaylight.controller.sal.utils,
28               org.opendaylight.controller.sal.packet,
29           org.opendaylight.controller.switchmanager,
30           org.opendaylight.controller.hosttracker,
31               org.opendaylight.controller.hosttracker.hostAware,
32           org.apache.felix.dm,
33           org.osgi.service.component,
34               org.slf4j
35             </Import-Package>
36         <Bundle-Activator>
37           org.opendaylight.controller.arphandler.internal.Activator
38         </Bundle-Activator>
39           </instructions>
40           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
41         </configuration>
42       </plugin>
43     </plugins>
44   </build>
45   <dependencies>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>switchmanager</artifactId>
49       <version>0.4.0-SNAPSHOT</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>hosttracker</artifactId>
54       <version>0.4.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal</artifactId>
59       <version>0.5.0-SNAPSHOT</version>
60     </dependency>
61   </dependencies>
62 </project>