Merge "Reorder public/private modifiers as per JLS. (fixes sonar warnings)"
[controller.git] / opendaylight / northbound / containermanager / 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>containermanager.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        </plugin>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>2.3.6</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Export-Package>
31             </Export-Package>
32             <Import-Package>
33               org.opendaylight.controller.appauth.authorization,
34               org.opendaylight.controller.sal.authorization,
35               org.opendaylight.controller.usermanager,
36               org.opendaylight.controller.sal.core,
37               org.opendaylight.controller.sal.utils,
38               org.opendaylight.controller.containermanager,
39               org.opendaylight.controller.northbound.commons,
40               org.opendaylight.controller.northbound.commons.exception,
41               org.opendaylight.controller.northbound.commons.utils,
42               com.sun.jersey.spi.container.servlet,
43               javax.ws.rs,
44               javax.ws.rs.core,
45               javax.xml.bind.annotation,
46               javax.xml.bind,
47               org.slf4j,
48               org.codehaus.jackson.jaxrs,
49               !org.codehaus.enunciate.jaxrs
50             </Import-Package>
51             <Web-ContextPath>/controller/nb/v2/containermanager</Web-ContextPath>
52           </instructions>
53         </configuration>
54       </plugin>
55     </plugins>
56   </build>
57   <dependencies>
58   <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>containermanager</artifactId>
61       <version>0.5.0-SNAPSHOT</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>appauth</artifactId>
66       <version>0.4.0-SNAPSHOT</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>web</artifactId>
71       <version>0.4.0-SNAPSHOT</version>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>sal</artifactId>
76       <version>0.5.0-SNAPSHOT</version>
77     </dependency>
78     <dependency>
79       <groupId>org.codehaus.enunciate</groupId>
80       <artifactId>enunciate-core-annotations</artifactId>
81       <version>${enunciate.version}</version>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>commons.northbound</artifactId>
86       <version>0.4.0-SNAPSHOT</version>
87     </dependency>
88         <dependency>
89       <groupId>org.opendaylight.controller.thirdparty</groupId>
90       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
91       <version>1.17-SNAPSHOT</version>
92     </dependency>
93   </dependencies>
94 </project>