Fix for NorthboundIT test failure
[controller.git] / opendaylight / northbound / commons / 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.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>commons.northbound</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.apache.felix</groupId>
19         <artifactId>maven-bundle-plugin</artifactId>
20         <version>2.3.6</version>
21         <extensions>true</extensions>
22         <configuration>
23           <instructions>
24             <Export-Package>
25               org.opendaylight.controller.northbound.commons.exception,
26               org.opendaylight.controller.northbound.commons.utils,
27               org.opendaylight.controller.northbound.commons
28             </Export-Package>
29             <Import-Package>
30               javax.ws.rs,
31               javax.ws.rs.core,
32               org.opendaylight.controller.sal.utils,
33               org.opendaylight.controller.sal.authorization,
34               org.opendaylight.controller.containermanager,
35               org.opendaylight.controller.usermanager,
36               javax.servlet.http,
37               org.slf4j
38             </Import-Package>
39           </instructions>
40           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
41         </configuration>
42       </plugin>
43     </plugins>
44   </build>
45   <dependencies>
46       <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal</artifactId>
49       <version>0.5.0-SNAPSHOT</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>usermanager</artifactId>
54       <version>0.4.0-SNAPSHOT</version>
55     </dependency>
56   </dependencies>
57 </project>