e37816de87de28823ce80f39d37fc4e5fa8c3904
[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.1-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <groupId>org.opendaylight.controller</groupId>
18   <artifactId>containermanager.northbound</artifactId>
19   <version>0.4.1-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.codehaus.enunciate</groupId>
26         <artifactId>maven-enunciate-plugin</artifactId>
27         <version>${enunciate.version}</version>
28        </plugin>
29       <plugin>
30         <groupId>org.apache.felix</groupId>
31         <artifactId>maven-bundle-plugin</artifactId>
32         <version>${bundle.plugin.version}</version>
33         <extensions>true</extensions>
34         <configuration>
35           <instructions>
36             <Export-Package>
37             </Export-Package>
38             <Import-Package>
39               org.opendaylight.controller.appauth.authorization,
40               org.opendaylight.controller.sal.authorization,
41               org.opendaylight.controller.usermanager,
42               org.opendaylight.controller.sal.core,
43               org.opendaylight.controller.sal.utils,
44               org.opendaylight.controller.containermanager,
45               org.opendaylight.controller.northbound.commons,
46               org.opendaylight.controller.northbound.commons.exception,
47               org.opendaylight.controller.northbound.commons.utils,
48               com.sun.jersey.spi.container.servlet,
49               javax.ws.rs,
50               javax.ws.rs.core,
51               javax.xml.bind.annotation,
52               javax.xml.bind,
53               org.slf4j,
54               org.apache.catalina.filters,
55               org.codehaus.jackson.jaxrs,
56               !org.codehaus.enunciate.jaxrs
57             </Import-Package>
58             <Web-ContextPath>/controller/nb/v2/containermanager</Web-ContextPath>
59             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
60           </instructions>
61         </configuration>
62       </plugin>
63     </plugins>
64   </build>
65   <dependencies>
66   <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>containermanager</artifactId>
69       <version>0.5.1-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>appauth</artifactId>
74       <version>0.4.1-SNAPSHOT</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>web</artifactId>
79       <version>0.4.1-SNAPSHOT</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal</artifactId>
84       <version>0.5.1-SNAPSHOT</version>
85     </dependency>
86     <dependency>
87       <groupId>org.codehaus.enunciate</groupId>
88       <artifactId>enunciate-core-annotations</artifactId>
89       <version>${enunciate.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>commons.northbound</artifactId>
94       <version>0.4.1-SNAPSHOT</version>
95     </dependency>
96         <dependency>
97       <groupId>org.opendaylight.controller.thirdparty</groupId>
98       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
99       <version>1.18-SNAPSHOT</version>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller.thirdparty</groupId>
103       <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
104       <version>7.0.43-SNAPSHOT</version>
105     </dependency>
106   </dependencies>
107 </project>