Authorization fixes for Northbound bundles
[controller.git] / opendaylight / northbound / topology / 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>topology.northbound</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17      <plugins>
18       <plugin>
19         <groupId>org.codehaus.enunciate</groupId>
20         <artifactId>maven-enunciate-plugin</artifactId>
21         <version>${enunciate.version}</version>
22         <dependencies>
23           <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>sal</artifactId>
26             <version>0.5.0-SNAPSHOT</version>
27           </dependency>
28         </dependencies>
29       </plugin>
30       <plugin>
31           <groupId>org.apache.felix</groupId>
32           <artifactId>maven-bundle-plugin</artifactId>
33           <version>2.3.6</version>
34           <extensions>true</extensions>
35           <configuration>
36           <instructions>
37             <Export-Package>
38             </Export-Package>
39             <Import-Package>
40               org.opendaylight.controller.containermanager,
41               org.opendaylight.controller.northbound.commons,
42               org.opendaylight.controller.northbound.commons.exception,
43               org.opendaylight.controller.northbound.commons.utils,
44               org.opendaylight.controller.sal.core,
45               org.opendaylight.controller.sal.packet,
46               org.opendaylight.controller.sal.authorization,
47                           org.opendaylight.controller.sal.packet.address,
48               org.opendaylight.controller.sal.utils,
49               org.opendaylight.controller.switchmanager,
50               org.opendaylight.controller.usermanager,
51               org.opendaylight.controller.topologymanager,
52               com.sun.jersey.spi.container.servlet,
53                           javax.ws.rs,
54               javax.ws.rs.core,
55               javax.xml.bind,
56               javax.xml.bind.annotation,
57               org.slf4j,
58               !org.codehaus.enunciate.jaxrs
59             </Import-Package>
60             <Web-ContextPath>/controller/nb/v2/topology</Web-ContextPath>
61           </instructions>
62           </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <dependencies>
67     <dependency>
68       <groupId>org.codehaus.enunciate</groupId>
69       <artifactId>enunciate-core-annotations</artifactId>
70       <version>${enunciate.version}</version>
71     </dependency>
72         <dependency>
73           <groupId>org.opendaylight.controller</groupId>
74           <artifactId>containermanager</artifactId>
75           <version>0.4.0-SNAPSHOT</version>
76         </dependency>
77         <dependency>
78           <groupId>org.opendaylight.controller</groupId>
79           <artifactId>commons.northbound</artifactId>
80           <version>0.4.0-SNAPSHOT</version>
81         </dependency>
82         <dependency>
83           <groupId>org.opendaylight.controller</groupId>
84           <artifactId>sal</artifactId>
85           <version>0.5.0-SNAPSHOT</version>
86         </dependency>
87         <dependency>
88           <groupId>org.opendaylight.controller</groupId>
89           <artifactId>topologymanager</artifactId>
90           <version>0.4.0-SNAPSHOT</version>
91         </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller.thirdparty</groupId>
94       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
95       <version>1.17-SNAPSHOT</version>
96     </dependency>
97   </dependencies>
98 </project>