Merge "Add missing copyright text"
[controller.git] / opendaylight / adsal / northbound / hosttracker / 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>adsal-enunciate-parent</artifactId>
7     <version>1.6.0-SNAPSHOT</version>
8     <relativePath>../../adsal-enunciate-parent</relativePath>
9   </parent>
10   <artifactId>hosttracker.northbound</artifactId>
11   <version>0.6.0-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.codehaus.enunciate</groupId>
20       <artifactId>enunciate-core-annotations</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>commons.northbound</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>containermanager</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>hosttracker</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>switchmanager</artifactId>
41     </dependency>
42   </dependencies>
43
44   <build>
45     <plugins>
46       <plugin>
47         <groupId>org.apache.felix</groupId>
48         <artifactId>maven-bundle-plugin</artifactId>
49         <extensions>true</extensions>
50         <configuration>
51           <instructions>
52             <Import-Package>org.opendaylight.controller.hosttracker,
53               org.opendaylight.controller.hosttracker.hostAware,
54               org.opendaylight.controller.sal.core,
55               org.opendaylight.controller.sal.utils,
56               org.opendaylight.controller.containermanager,
57               org.opendaylight.controller.switchmanager,
58               org.opendaylight.controller.usermanager,
59               org.apache.commons.logging,
60               com.sun.jersey.spi.container.servlet,
61               org.opendaylight.controller.northbound.commons,
62               org.opendaylight.controller.northbound.commons.exception,
63               org.opendaylight.controller.northbound.commons.query,
64               org.opendaylight.controller.northbound.commons.utils,
65               org.opendaylight.controller.sal.authorization,
66               org.opendaylight.controller.sal.packet.address,
67               javax.ws.rs,
68               javax.ws.rs.core,
69               javax.ws.rs.ext,
70               javax.xml.bind.annotation,
71               javax.xml.bind,
72               org.slf4j,
73               org.apache.catalina.filters,
74               com.fasterxml.jackson.jaxrs.base,
75               com.fasterxml.jackson.jaxrs.json,
76               !org.codehaus.enunciate.jaxrs</Import-Package>
77             <Web-ContextPath>/controller/nb/v2/hosttracker</Web-ContextPath>
78             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
79           </instructions>
80           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
81         </configuration>
82       </plugin>
83     </plugins>
84   </build>
85   <scm>
86     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
87     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
88     <tag>HEAD</tag>
89     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
90   </scm>
91 </project>