Add lispflowmapping specific configuration options
[controller.git] / opendaylight / hosttracker_new / api / 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>hosttracker_new</artifactId>
11   <version>0.4.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>sal</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>switchmanager</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>topologymanager</artifactId>
33     </dependency>
34   </dependencies>
35
36   <build>
37     <plugins>
38       <plugin>
39         <groupId>org.apache.felix</groupId>
40         <artifactId>maven-bundle-plugin</artifactId>
41         <version>${bundle.plugin.version}</version>
42         <extensions>true</extensions>
43         <configuration>
44           <instructions>
45             <Export-Package>org.opendaylight.controller.hosttracker,
46               org.opendaylight.controller.hosttracker.hostAware</Export-Package>
47             <Import-Package>org.opendaylight.controller.sal.core,
48               org.opendaylight.controller.sal.utils,
49               org.opendaylight.controller.topologymanager,
50               org.opendaylight.controller.sal.packet.address,
51               org.opendaylight.controller.switchmanager,
52               org.opendaylight.controller.clustering.services,
53               javax.xml.bind.annotation,
54               javax.xml.bind,
55               org.apache.felix.dm,
56               org.apache.commons.lang3.builder,
57               org.osgi.service.component,
58               org.slf4j,
59               org.eclipse.osgi.framework.console,
60               org.osgi.framework</Import-Package>
61           </instructions>
62           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
63         </configuration>
64       </plugin>
65     </plugins>
66   </build>
67   <scm>
68     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
69     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
70     <tag>HEAD</tag>
71     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
72   </scm>
73 </project>