Prepare for mvn release:prepare release:perform operation
[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.enunciate.jaxrs
75             </Import-Package>
76             <Export-Package>
77             </Export-Package>
78             <Web-ContextPath>/controller/nb/v2/subnet</Web-ContextPath>
79           </instructions>
80           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
81         </configuration>
82       </plugin>
83     </plugins>
84   </build>
85   <dependencies>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>sal</artifactId>
89       <version>0.5.0-SNAPSHOT</version>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>containermanager</artifactId>
94       <version>0.4.0-SNAPSHOT</version>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>switchmanager</artifactId>
99       <version>0.5.0-SNAPSHOT</version>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller.thirdparty</groupId>
103       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
104       <version>1.17-SNAPSHOT</version>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.controller</groupId>
108       <artifactId>commons.northbound</artifactId>
109       <version>0.4.0-SNAPSHOT</version>
110     </dependency>
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>org.opendaylight.controller.thirdparty</groupId>
118       <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
119       <version>7.0.42-SNAPSHOT</version>
120     </dependency>
121   </dependencies>
122 </project>