Merge changes I52e0dd0d,I6dbf3316,Iafae27bc,Ibbb1250b,Icdb56d14,I7ede1482,Ib335fd1d...
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / 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>sal-remoterpc-connector-test-nb</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             </Export-Package>
25             <Import-Package>
26               com.sun.jersey.spi.container.servlet,
27               !org.codehaus.jackson.annotate,
28               javax.ws.rs,
29               javax.ws.rs.core,
30               javax.xml.bind,
31               javax.xml.bind.annotation,
32               org.slf4j,
33               org.apache.catalina.filters,
34               !org.codehaus.jackson.jaxrs,
35               org.opendaylight.controller.sample.zeromq.provider,
36               org.opendaylight.controller.sample.zeromq.consumer,
37               org.opendaylight.controller.sal.utils,
38               org.opendaylight.yangtools.yang.common,
39               org.opendaylight.controller.sal.connector.api,
40               org.opendaylight.controller.sal.connector.remoterpc.api;version="[0.4,1)",
41               org.opendaylight.controller.sal.connector.remoterpc.impl;version="[0.4,1)",
42               org.opendaylight.controller.sal.connector.remoterpc.dto,
43               org.opendaylight.controller.sal.connector.remoterpc.util,
44               org.osgi.framework,
45               com.google.common.base,
46               org.opendaylight.yangtools.yang.data.api,
47               !org.codehaus.enunciate.jaxrs
48
49             </Import-Package>
50             <Web-ContextPath>/controller/nb/v2/zmqnb</Web-ContextPath>
51             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
52           </instructions>
53           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58   <dependencies>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>containermanager</artifactId>
62       <version>0.5.1-SNAPSHOT</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>commons.northbound</artifactId>
67       <version>0.4.1-SNAPSHOT</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>sal</artifactId>
72       <version>0.5.1-SNAPSHOT</version>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller.tests</groupId>
76       <artifactId>sal-remoterpc-connector-test-provider</artifactId>
77       <version>1.0-SNAPSHOT</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller.tests</groupId>
81       <artifactId>sal-remoterpc-connector-test-consumer</artifactId>
82       <version>1.0-SNAPSHOT</version>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>sal-remoterpc-connector</artifactId>
87       <version>1.0-SNAPSHOT</version>
88     </dependency>
89     <dependency>
90       <groupId>org.osgi</groupId>
91       <artifactId>org.osgi.core</artifactId>
92       <version>5.0.0</version>
93     </dependency>
94     <dependency>
95       <groupId>junit</groupId>
96       <artifactId>junit</artifactId>
97     </dependency>
98       <dependency>
99           <groupId>org.opendaylight.controller</groupId>
100           <artifactId>remoterpc-routingtable.implementation</artifactId>
101           <version>0.4.1-SNAPSHOT</version>
102       </dependency>
103       <dependency>
104           <groupId>com.google.guava</groupId>
105           <artifactId>guava</artifactId>
106       </dependency>
107   </dependencies>
108
109  </project>