Fix warnings about overriden versions
[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.2-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.2-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         <dependencies>
26           <dependency>
27             <groupId>org.opendaylight.controller</groupId>
28             <artifactId>sal</artifactId>
29             <version>${sal.version}</version>
30           </dependency>
31           <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>clustering.services</artifactId>
34             <version>${clustering.services.version}</version>
35           </dependency>
36           <dependency>
37             <groupId>org.opendaylight.controller</groupId>
38             <artifactId>configuration</artifactId>
39             <version>${configuration.version}</version>
40           </dependency>
41           <dependency>
42             <groupId>org.opendaylight.controller</groupId>
43             <artifactId>switchmanager</artifactId>
44             <version>${switchmanager.api.version}</version>
45           </dependency>
46         </dependencies>
47       </plugin>
48       <plugin>
49         <groupId>org.apache.felix</groupId>
50         <artifactId>maven-bundle-plugin</artifactId>
51         <version>${bundle.plugin.version}</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               com.fasterxml.jackson.jaxrs.base,
75               com.fasterxml.jackson.jaxrs.json,
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     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>containermanager</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>switchmanager</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller</groupId>
103       <artifactId>commons.northbound</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.codehaus.enunciate</groupId>
107       <artifactId>enunciate-core-annotations</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>junit</groupId>
111       <artifactId>junit</artifactId>
112       <scope>test</scope>
113     </dependency>
114   </dependencies>
115 </project>