35b2a4b25064d86794938e59bfcacf5b47548d72
[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.0-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               org.codehaus.jackson.annotate,
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       <version>0.5.1-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>commons.northbound</artifactId>
64       <version>0.4.1-SNAPSHOT</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal</artifactId>
69       <version>0.5.1-SNAPSHOT</version>
70     </dependency>
71
72     <dependency>
73       <groupId>org.osgi</groupId>
74       <artifactId>org.osgi.core</artifactId>
75       <version>5.0.0</version>
76     </dependency>
77     <dependency>
78       <groupId>junit</groupId>
79       <artifactId>junit</artifactId>
80     </dependency>
81       <dependency>
82           <groupId>org.opendaylight.controller</groupId>
83           <artifactId>remoterpc-routingtable.implementation</artifactId>
84           <version>0.4.1-SNAPSHOT</version>
85       </dependency>
86       <dependency>
87           <groupId>com.google.guava</groupId>
88           <artifactId>guava</artifactId>
89       </dependency>
90   </dependencies>
91
92  </project>