Merge "BUG-972: correct Precondition"
[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
11   <artifactId>subnets.northbound</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>org.codehaus.enunciate</groupId>
17       <artifactId>enunciate-core-annotations</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>commons.northbound</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>containermanager</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>switchmanager</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <scope>test</scope>
39     </dependency>
40   </dependencies>
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <version>${bundle.plugin.version}</version>
47         <extensions>true</extensions>
48         <configuration>
49           <instructions>
50             <Export-Package></Export-Package>
51             <Import-Package>org.opendaylight.controller.sal.core,
52               org.opendaylight.controller.sal.utils,
53               org.opendaylight.controller.containermanager,
54               org.opendaylight.controller.switchmanager,
55               org.opendaylight.controller.northbound.commons,
56               org.opendaylight.controller.northbound.commons.exception,
57               org.opendaylight.controller.northbound.commons.utils,
58               com.sun.jersey.spi.container.servlet,
59               org.opendaylight.controller.sal.authorization,
60               org.opendaylight.controller.usermanager,
61               javax.ws.rs,
62               javax.ws.rs.core,
63               javax.xml.bind,
64               javax.xml.bind.annotation,
65               org.slf4j,
66               org.apache.catalina.filters,
67               com.fasterxml.jackson.jaxrs.base,
68               com.fasterxml.jackson.jaxrs.json,
69               !org.codehaus.enunciate.jaxrs</Import-Package>
70             <Export-Package></Export-Package>
71             <Web-ContextPath>/controller/nb/v2/subnetservice</Web-ContextPath>
72             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
73           </instructions>
74           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.codehaus.enunciate</groupId>
79         <artifactId>maven-enunciate-plugin</artifactId>
80         <dependencies>
81           <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>clustering.services</artifactId>
84             <version>${clustering.services.version}</version>
85           </dependency>
86           <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>configuration</artifactId>
89             <version>${configuration.version}</version>
90           </dependency>
91           <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>sal</artifactId>
94             <version>${sal.version}</version>
95           </dependency>
96           <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>switchmanager</artifactId>
99             <version>${switchmanager.api.version}</version>
100           </dependency>
101         </dependencies>
102       </plugin>
103     </plugins>
104   </build>
105   <scm>
106     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
107     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
108     <tag>HEAD</tag>
109     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
110   </scm>
111 </project>