Revisit Exception handling in BitBufferHelper and Packet
[controller.git] / opendaylight / hosttracker / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7                 <groupId>org.opendaylight.controller</groupId>
8                 <artifactId>commons.opendaylight</artifactId>
9                 <version>1.4.0-SNAPSHOT</version>
10                 <relativePath>../commons/opendaylight</relativePath>
11         </parent>
12         <groupId>org.opendaylight.controller</groupId>
13         <artifactId>hosttracker</artifactId>
14         <version>0.4.0-SNAPSHOT</version>
15         <packaging>bundle</packaging>
16
17         <build>
18                 <plugins>
19                         <plugin>
20                                 <groupId>org.apache.felix</groupId>
21                                 <artifactId>maven-bundle-plugin</artifactId>
22                                 <version>2.3.6</version>
23                                 <extensions>true</extensions>
24                                 <configuration>
25                                         <instructions>
26                                                 <Export-Package>
27                                                         org.opendaylight.controller.hosttracker,
28                                                         org.opendaylight.controller.hosttracker.hostAware
29                                                 </Export-Package>
30                                                 <Import-Package>
31                                                         org.opendaylight.controller.sal.core,
32                                                         org.opendaylight.controller.sal.utils,
33                                                         org.opendaylight.controller.hosttracker,
34                                                         org.opendaylight.controller.hosttracker.hostAware,
35                                                         org.opendaylight.controller.topologymanager,
36                                                         org.opendaylight.controller.sal.packet.address,
37                                                         org.opendaylight.controller.switchmanager,
38                                                         org.opendaylight.controller.clustering.services,
39                                                         javax.xml.bind.annotation,
40                                                         javax.xml.bind,
41                                                         org.apache.felix.dm,
42                                                         org.apache.commons.lang3.builder,
43                                                         org.osgi.service.component,
44                                                         org.slf4j,
45                                                         org.eclipse.osgi.framework.console,
46                                                         org.osgi.framework
47                                                 </Import-Package>
48                                                 <Bundle-Activator>
49                                                         org.opendaylight.controller.hosttracker.internal.Activator
50                                                 </Bundle-Activator>
51                                                 <Service-Component>
52                                                 </Service-Component>
53                                         </instructions>
54                                 </configuration>
55                         </plugin>
56                 </plugins>
57         </build>
58         <dependencies>
59                 <dependency>
60                         <groupId>org.opendaylight.controller</groupId>
61                         <artifactId>topologymanager</artifactId>
62                         <version>0.4.0-SNAPSHOT</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.opendaylight.controller</groupId>
66                         <artifactId>switchmanager</artifactId>
67                         <version>0.4.0-SNAPSHOT</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.opendaylight.controller</groupId>
71                         <artifactId>clustering.services</artifactId>
72                         <version>0.4.0-SNAPSHOT</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.opendaylight.controller</groupId>
76                         <artifactId>sal</artifactId>
77                         <version>0.4.0-SNAPSHOT</version>
78                 </dependency>
79         </dependencies>
80 </project>