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