Merge "MD-SAL StatisticsManager - Yang rpc and notification defined for group and...
[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.connection,
32               org.opendaylight.controller.sal.core,
33               org.opendaylight.controller.sal.utils,
34               org.opendaylight.controller.sal.packet,
35               org.opendaylight.controller.sal.routing,
36               org.opendaylight.controller.switchmanager,
37               org.opendaylight.controller.topologymanager,
38               org.opendaylight.controller.clustering.services,
39               org.opendaylight.controller.hosttracker,
40               org.opendaylight.controller.hosttracker.hostAware,
41               org.apache.felix.dm,
42               org.osgi.service.component,
43               org.slf4j
44             </Import-Package>
45             <Export-Package>
46               org.opendaylight.controller.arphandler
47             </Export-Package>
48             <Bundle-Activator>
49               org.opendaylight.controller.arphandler.internal.Activator
50             </Bundle-Activator>
51           </instructions>
52           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
53         </configuration>
54       </plugin>
55     </plugins>
56   </build>
57   <dependencies>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>switchmanager</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>connectionmanager</artifactId>
65       <version>0.1.1-SNAPSHOT</version>
66     </dependency>
67      <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>topologymanager</artifactId>
70       <version>0.4.1-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>hosttracker</artifactId>
75       <version>0.4.1-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>sal</artifactId>
80       <version>0.5.1-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>junit</groupId>
84       <artifactId>junit</artifactId>
85     </dependency>
86   </dependencies>
87 </project>