Serialization to Json improvement
[controller.git] / opendaylight / hosttracker / 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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.1-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15     <tag>HEAD</tag>
16   </scm>
17   <artifactId>hosttracker</artifactId>
18   <version>0.4.1-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Export-Package>
31               org.opendaylight.controller.hosttracker,
32               org.opendaylight.controller.hosttracker.hostAware
33             </Export-Package>
34             <Import-Package>
35               org.opendaylight.controller.sal.core,
36               org.opendaylight.controller.sal.utils,
37               org.opendaylight.controller.topologymanager,
38               org.opendaylight.controller.sal.packet.address,
39               org.opendaylight.controller.switchmanager,
40               org.opendaylight.controller.clustering.services,
41               javax.xml.bind.annotation,
42               javax.xml.bind,
43               org.apache.felix.dm,
44               org.apache.commons.lang3.builder,
45               org.osgi.service.component,
46               org.slf4j,
47               org.eclipse.osgi.framework.console,
48               org.osgi.framework
49             </Import-Package>
50           </instructions>
51           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
52         </configuration>
53       </plugin>
54     </plugins>
55   </build>
56   <dependencies>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>topologymanager</artifactId>
60       <version>0.4.1-SNAPSHOT</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>switchmanager</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>clustering.services</artifactId>
69       <version>0.4.1-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>sal</artifactId>
74       <version>0.5.1-SNAPSHOT</version>
75     </dependency>
76     <dependency>
77       <groupId>junit</groupId>
78       <artifactId>junit</artifactId>
79     </dependency>
80   </dependencies>
81 </project>