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