sal-remoterpc-connector: sync ch.qos.logback:logback-classic version
[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               com.fasterxml.jackson.jaxrs.base,
56               com.fasterxml.jackson.jaxrs.json,
57               !org.codehaus.enunciate.jaxrs
58             </Import-Package>
59             <Web-ContextPath>/controller/nb/v2/containermanager</Web-ContextPath>
60             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
61           </instructions>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <dependencies>
67   <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>containermanager</artifactId>
70       <version>${containermanager.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>appauth</artifactId>
75       <version>0.4.1-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>web</artifactId>
80       <version>0.4.1-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>sal</artifactId>
85       <version>${sal.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>org.codehaus.enunciate</groupId>
89       <artifactId>enunciate-core-annotations</artifactId>
90       <version>${enunciate.version}</version>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>commons.northbound</artifactId>
95       <version>${commons.northbound.version}</version>
96     </dependency>
97   </dependencies>
98 </project>