d80d669edf9bc161982569c1a39a45fda7215144
[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   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>commons.northbound</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>org.apache.felix</groupId>
20         <artifactId>maven-bundle-plugin</artifactId>
21         <version>2.3.6</version>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Export-Package>
26               org.opendaylight.controller.northbound.commons.exception,
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.usermanager,
34               javax.servlet.http, 
35               org.slf4j,                              
36             </Import-Package>
37           </instructions>
38         </configuration>
39       </plugin>
40     </plugins>
41   </build>
42   <dependencies>
43       <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal</artifactId>
46       <version>0.5.0-SNAPSHOT</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>usermanager</artifactId>
51       <version>0.4.0-SNAPSHOT</version>
52     </dependency>
53   </dependencies>
54 </project>