BUG-731: RoutedRegistration.close() should not throw
[controller.git] / opendaylight / networkconfiguration / neutron / 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   <artifactId>networkconfig.neutron</artifactId>
11   <version>0.4.2-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13   <properties>
14     <enunciate.version>1.26.2</enunciate.version>
15   </properties>
16   <dependencies>
17     <dependency>
18       <groupId>commons-net</groupId>
19       <artifactId>commons-net</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>clustering.services</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>configuration</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal</artifactId>
32     </dependency>
33   </dependencies>
34   <build>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <version>${bundle.plugin.version}</version>
40         <extensions>true</extensions>
41         <configuration>
42           <instructions>
43             <Import-Package>org.opendaylight.controller.configuration,
44               org.opendaylight.controller.clustering.services,
45               org.opendaylight.controller.sal.core,
46               org.opendaylight.controller.sal.utils,
47               org.apache.felix.dm,
48               org.apache.commons.net.util,
49               org.osgi.service.component,
50               org.slf4j,
51               javax.xml.bind.annotation</Import-Package>
52           </instructions>
53           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58   <scm>
59     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
60     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
61     <tag>HEAD</tag>
62     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
63   </scm>
64   <distributionManagement>
65     <!-- OpenDayLight Released artifact -->
66     <repository>
67       <id>opendaylight-release</id>
68       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
69     </repository>
70     <!-- OpenDayLight Snapshot artifact -->
71     <snapshotRepository>
72       <id>opendaylight-snapshot</id>
73       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
74     </snapshotRepository>
75     <!-- Site deployment -->
76     <site>
77       <id>website</id>
78       <url>${sitedeploy}</url>
79     </site>
80   </distributionManagement>
81 </project>