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