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