Merge "BUG 484 Anyxml normalized node"
[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     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>commons.northbound</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>sal</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller.tests</groupId>
73       <artifactId>sal-remoterpc-connector-test-provider</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller.tests</groupId>
77       <artifactId>sal-remoterpc-connector-test-consumer</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>sal-remoterpc-connector</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.osgi</groupId>
85       <artifactId>org.osgi.core</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>junit</groupId>
89       <artifactId>junit</artifactId>
90     </dependency>
91       <dependency>
92           <groupId>org.opendaylight.controller</groupId>
93           <artifactId>remoterpc-routingtable.implementation</artifactId>
94       </dependency>
95       <dependency>
96           <groupId>com.google.guava</groupId>
97           <artifactId>guava</artifactId>
98       </dependency>
99   </dependencies>
100
101  </project>