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