BUG-731: RoutedRegistration.close() should not throw
[controller.git] / opendaylight / northbound / bundlescanner / api / 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>bundlescanner</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.osgi</groupId>
18       <artifactId>org.osgi.core</artifactId>
19     </dependency>
20   </dependencies>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.felix</groupId>
26         <artifactId>maven-bundle-plugin</artifactId>
27         <version>${bundle.plugin.version}</version>
28         <extensions>true</extensions>
29         <configuration>
30           <instructions>
31             <Import-Package>org.osgi.framework,
32               org.slf4j,
33               javax.ws.rs,
34               javax.ws.rs.core,
35               javax.xml.bind.annotation,
36               javax.xml.bind,</Import-Package>
37             <Export-Package>org.opendaylight.controller.northbound.bundlescanner</Export-Package>
38           </instructions>
39         </configuration>
40       </plugin>
41     </plugins>
42   </build>
43
44   <scm>
45     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
46     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
47     <tag>HEAD</tag>
48     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
49   </scm>
50 </project>