Merge "BUG-648: Improve performance by reusing old data nodes"
[controller.git] / opendaylight / 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>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>hosttracker.northbound</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.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.utils,
64               org.opendaylight.controller.sal.authorization,
65               org.opendaylight.controller.sal.packet.address,
66               javax.ws.rs,
67               javax.ws.rs.core,
68               javax.xml.bind.annotation,
69               javax.xml.bind,
70               org.slf4j,
71               org.apache.catalina.filters,
72               com.fasterxml.jackson.jaxrs.base,
73               com.fasterxml.jackson.jaxrs.json,
74               !org.codehaus.enunciate.jaxrs</Import-Package>
75             <Web-ContextPath>/controller/nb/v2/hosttracker</Web-ContextPath>
76             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
77           </instructions>
78           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
79         </configuration>
80       </plugin>
81       <plugin>
82         <groupId>org.codehaus.enunciate</groupId>
83         <artifactId>maven-enunciate-plugin</artifactId>
84         <dependencies>
85           <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal</artifactId>
88             <version>${sal.version}</version>
89           </dependency>
90         </dependencies>
91       </plugin>
92     </plugins>
93   </build>
94   <scm>
95     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
96     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
97     <tag>HEAD</tag>
98     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
99   </scm>
100 </project>