Merge "Increase timeout for waiting for broker service in sal-binding-it."
[controller.git] / opendaylight / topologymanager / implementation / 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   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>topologymanager</artifactId>
18   <version>0.4.2-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Export-Package>
31               org.opendaylight.controller.topologymanager
32             </Export-Package>
33             <Import-Package>
34               javax.xml.bind.annotation,
35               org.opendaylight.controller.sal.core,
36               org.opendaylight.controller.sal.utils,
37               org.opendaylight.controller.sal.packet,
38               org.opendaylight.controller.sal.topology,
39               org.opendaylight.controller.configuration,
40               org.opendaylight.controller.clustering.services,
41               org.opendaylight.controller.switchmanager,
42               org.osgi.service.component,
43               org.slf4j,
44               org.apache.felix.dm,
45               org.apache.commons.lang3.builder,
46               org.apache.commons.lang3.tuple,
47               org.eclipse.osgi.framework.console,
48               org.osgi.framework
49             </Import-Package>
50             <Bundle-Activator>
51               org.opendaylight.controller.topologymanager.internal.Activator
52             </Bundle-Activator>
53           </instructions>
54           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
55         </configuration>
56       </plugin>
57     </plugins>
58   </build>
59   <dependencies>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>clustering.services</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>configuration</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>switchmanager</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>junit</groupId>
78       <artifactId>junit</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>equinoxSDK381</groupId>
83       <artifactId>org.eclipse.osgi</artifactId>
84     </dependency>
85   </dependencies>
86 </project>