Implement finding a primary based on the shard name and do basic wiring of Distribute...
[controller.git] / opendaylight / md-sal / remoterpc-routingtable / integrationtest / test-nb / 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     <artifactId>sal-remoterpc-connector-test-parent</artifactId>
7     <groupId>org.opendaylight.controller.tests</groupId>
8     <version>1.1-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>remoterpc-routingtable-nb-it</artifactId>
12   <packaging>bundle</packaging>
13
14   <build>
15     <plugins>
16       <plugin>
17         <groupId>org.apache.felix</groupId>
18         <artifactId>maven-bundle-plugin</artifactId>
19         <version>${bundle.plugin.version}</version>
20         <extensions>true</extensions>
21         <configuration>
22           <instructions>
23             <Export-Package>
24              org.opendaylight.controller.tests.zmqroutingtable.rest
25             </Export-Package>
26             <Import-Package>
27               com.sun.jersey.spi.container.servlet,
28               com.fasterxml.jackson.annotation,
29               javax.ws.rs,
30               javax.ws.rs.core,
31               javax.xml.bind,
32               javax.xml.bind.annotation,
33               org.slf4j,
34               org.apache.catalina.filters,
35               org.codehaus.jackson.jaxrs,
36               org.opendaylight.controller.sal.utils,
37               org.opendaylight.yangtools.yang.common,
38               org.opendaylight.controller.sal.connector.api,
39               org.opendaylight.controller.sal.connector.remoterpc.api,
40               org.opendaylight.controller.sal.connector.remoterpc.impl,
41               org.osgi.framework,
42               com.google.common.base,
43               org.opendaylight.yangtools.yang.data.api,
44               !org.codehaus.enunciate.jaxrs
45
46             </Import-Package>
47             <Web-ContextPath>/controller/nb/v2/zmqnbrt</Web-ContextPath>
48             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
49           </instructions>
50           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
51         </configuration>
52       </plugin>
53     </plugins>
54   </build>
55   <dependencies>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>containermanager</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>commons.northbound</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>sal</artifactId>
67     </dependency>
68
69     <dependency>
70       <groupId>org.osgi</groupId>
71       <artifactId>org.osgi.core</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>junit</groupId>
75       <artifactId>junit</artifactId>
76     </dependency>
77       <dependency>
78           <groupId>org.opendaylight.controller</groupId>
79           <artifactId>remoterpc-routingtable.implementation</artifactId>
80       </dependency>
81       <dependency>
82           <groupId>com.google.guava</groupId>
83           <artifactId>guava</artifactId>
84       </dependency>
85   </dependencies>
86
87  </project>