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