Merge "Enhance the LLDPTLV.java to handle the LLDP port ID subtypes 3 (MAC) in additi...
[controller.git] / opendaylight / arphandler / 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.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>arphandler</artifactId>
11   <version>0.5.2-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13   <dependencies>
14     <dependency>
15       <groupId>junit</groupId>
16       <artifactId>junit</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>clustering.services</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>connectionmanager</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>hosttracker</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal.connection</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>switchmanager</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>topologymanager</artifactId>
45     </dependency>
46   </dependencies>
47
48   <build>
49     <plugins>
50       <plugin>
51         <groupId>org.apache.felix</groupId>
52         <artifactId>maven-bundle-plugin</artifactId>
53         <version>${bundle.plugin.version}</version>
54         <extensions>true</extensions>
55         <configuration>
56           <instructions>
57             <Import-Package>org.opendaylight.controller.sal.packet.address,
58               org.opendaylight.controller.connectionmanager,
59               org.opendaylight.controller.sal.connection,
60               org.opendaylight.controller.sal.core,
61               org.opendaylight.controller.sal.utils,
62               org.opendaylight.controller.sal.packet,
63               org.opendaylight.controller.sal.routing,
64               org.opendaylight.controller.switchmanager,
65               org.opendaylight.controller.topologymanager,
66               org.opendaylight.controller.clustering.services,
67               org.opendaylight.controller.hosttracker,
68               org.opendaylight.controller.hosttracker.hostAware,
69               org.apache.felix.dm,
70               org.osgi.service.component,
71               org.slf4j</Import-Package>
72             <Export-Package>org.opendaylight.controller.arphandler</Export-Package>
73             <Bundle-Activator>org.opendaylight.controller.arphandler.internal.Activator</Bundle-Activator>
74           </instructions>
75           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
76         </configuration>
77       </plugin>
78     </plugins>
79   </build>
80   <scm>
81     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
82     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
83     <tag>HEAD</tag>
84     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
85   </scm>
86 </project>