To SAL conversion test.
[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             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
81           </instructions>
82           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
83         </configuration>
84       </plugin>
85     </plugins>
86   </build>
87   <dependencies>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal</artifactId>
91       <version>0.5.0-SNAPSHOT</version>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>containermanager</artifactId>
96       <version>0.5.0-SNAPSHOT</version>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>switchmanager</artifactId>
101       <version>0.5.0-SNAPSHOT</version>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.controller.thirdparty</groupId>
105       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
106       <version>1.17-SNAPSHOT</version>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller</groupId>
110       <artifactId>commons.northbound</artifactId>
111       <version>0.4.0-SNAPSHOT</version>
112     </dependency>
113     <dependency>
114       <groupId>org.codehaus.enunciate</groupId>
115       <artifactId>enunciate-core-annotations</artifactId>
116       <version>${enunciate.version}</version>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.controller.thirdparty</groupId>
120       <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
121       <version>7.0.42-SNAPSHOT</version>
122     </dependency>
123   </dependencies>
124 </project>