8a74b875cf846da2430072df1515b7c5201d4b65
[controller.git] / opendaylight / northbound / subnets / 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   <artifactId>subnets.northbound</artifactId>
18   <version>0.4.1-SNAPSHOT</version>
19   <packaging>bundle</packaging>
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           <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>clustering.services</artifactId>
35             <version>0.4.1-SNAPSHOT</version>
36           </dependency>
37           <dependency>
38             <groupId>org.opendaylight.controller</groupId>
39             <artifactId>configuration</artifactId>
40             <version>0.4.1-SNAPSHOT</version>
41           </dependency>
42           <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>switchmanager</artifactId>
45             <version>0.5.1-SNAPSHOT</version>
46           </dependency>
47         </dependencies>
48       </plugin>
49       <plugin>
50         <groupId>org.apache.felix</groupId>
51         <artifactId>maven-bundle-plugin</artifactId>
52         <version>${bundle.plugin.version}</version>
53         <extensions>true</extensions>
54         <configuration>
55           <instructions>
56             <Export-Package>
57             </Export-Package>
58             <Import-Package>
59               org.opendaylight.controller.sal.core,
60               org.opendaylight.controller.sal.utils,
61               org.opendaylight.controller.containermanager,
62               org.opendaylight.controller.switchmanager,
63               org.opendaylight.controller.northbound.commons,
64               org.opendaylight.controller.northbound.commons.exception,
65               org.opendaylight.controller.northbound.commons.utils,
66               com.sun.jersey.spi.container.servlet,
67               org.opendaylight.controller.sal.authorization,
68               org.opendaylight.controller.usermanager,
69               javax.ws.rs,
70               javax.ws.rs.core,
71               javax.xml.bind,
72               javax.xml.bind.annotation,
73               org.slf4j,
74               org.apache.catalina.filters,
75               org.codehaus.jackson.jaxrs,
76               !org.codehaus.enunciate.jaxrs
77             </Import-Package>
78             <Export-Package>
79             </Export-Package>
80             <Web-ContextPath>/controller/nb/v2/subnetservice</Web-ContextPath>
81             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
82           </instructions>
83           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
84         </configuration>
85       </plugin>
86     </plugins>
87   </build>
88   <dependencies>
89     <dependency>
90       <groupId>org.opendaylight.controller</groupId>
91       <artifactId>sal</artifactId>
92       <version>0.5.1-SNAPSHOT</version>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller</groupId>
96       <artifactId>containermanager</artifactId>
97       <version>0.5.1-SNAPSHOT</version>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>switchmanager</artifactId>
102       <version>0.5.1-SNAPSHOT</version>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.controller.thirdparty</groupId>
106       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
107       <version>1.18-SNAPSHOT</version>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.controller</groupId>
111       <artifactId>commons.northbound</artifactId>
112       <version>0.4.1-SNAPSHOT</version>
113     </dependency>
114     <dependency>
115       <groupId>org.codehaus.enunciate</groupId>
116       <artifactId>enunciate-core-annotations</artifactId>
117       <version>${enunciate.version}</version>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.controller.thirdparty</groupId>
121       <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
122       <version>7.0.43-SNAPSHOT</version>
123     </dependency>
124   </dependencies>
125 </project>