BUG-731: RoutedRegistration.close() should not throw
[controller.git] / opendaylight / northbound / networkconfiguration / bridgedomain / 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>networkconfig.bridgedomain.northbound</artifactId>
12   <version>0.0.3-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>connectionmanager</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>containermanager</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>sal.connection</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal.networkconfiguration</artifactId>
42     </dependency>
43   </dependencies>
44   <build>
45     <plugins>
46       <plugin>
47         <groupId>org.apache.felix</groupId>
48         <artifactId>maven-bundle-plugin</artifactId>
49         <version>${bundle.plugin.version}</version>
50         <extensions>true</extensions>
51         <configuration>
52           <instructions>
53             <Export-Package></Export-Package>
54             <Import-Package>org.opendaylight.controller.sal.core,
55               org.opendaylight.controller.sal.utils,
56               org.opendaylight.controller.sal.networkconfig.bridgedomain,
57               org.opendaylight.controller.containermanager,
58               org.opendaylight.controller.usermanager,
59               com.sun.jersey.spi.container.servlet,
60               org.opendaylight.controller.northbound.commons,
61               org.opendaylight.controller.northbound.commons.exception,
62               org.opendaylight.controller.northbound.commons.utils,
63               org.opendaylight.controller.sal.authorization,
64               org.opendaylight.controller.connectionmanager,
65               org.opendaylight.controller.sal.connection,
66               org.slf4j,
67               javax.ws.rs,
68               javax.ws.rs.core,
69               javax.xml.bind.annotation,
70               javax.xml.bind,
71               org.apache.catalina.filters,
72               com.fasterxml.jackson.jaxrs.base,
73               com.fasterxml.jackson.jaxrs.json,
74               !org.codehaus.enunciate.jaxrs</Import-Package>
75             <Export-Package></Export-Package>
76             <Web-ContextPath>/controller/nb/v2/networkconfig/bridgedomain</Web-ContextPath>
77             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
78           </instructions>
79           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
80         </configuration>
81       </plugin>
82       <plugin>
83         <groupId>org.codehaus.enunciate</groupId>
84         <artifactId>maven-enunciate-plugin</artifactId>
85         <dependencies>
86           <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>sal</artifactId>
89             <version>${sal.version}</version>
90           </dependency>
91         </dependencies>
92       </plugin>
93     </plugins>
94   </build>
95   <scm>
96     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
97     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
98     <tag>HEAD</tag>
99     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
100   </scm>
101 </project>