Increase timeout for waiting for broker service in sal-binding-it.
[controller.git] / opendaylight / clustering / test / 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.1-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>clustering.test</artifactId>
18   <version>0.4.1-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           <Import-Package>
31             org.slf4j,
32             javax.transaction,
33             org.eclipse.osgi.framework.console,
34             ch.qos.logback.classic,
35             org.opendaylight.controller.clustering.services,
36             org.opendaylight.controller.sal.core,
37             org.apache.felix.dm
38           </Import-Package>
39           <Export-Package>
40             org.opendaylight.controller.clustering.test.internal
41           </Export-Package>
42           <Bundle-Activator>
43             org.opendaylight.controller.clustering.test.internal.Activator
44           </Bundle-Activator>
45         </instructions>
46         <manifestLocation>${project.basedir}/META-INF</manifestLocation>
47       </configuration>
48     </plugin>
49   </plugins>
50   </build>
51   <dependencies>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>clustering.services</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>equinoxSDK381</groupId>
62       <artifactId>org.eclipse.osgi.services</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>equinoxSDK381</groupId>
66       <artifactId>org.eclipse.osgi</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>equinoxSDK381</groupId>
70       <artifactId>org.apache.felix.gogo.command</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>equinoxSDK381</groupId>
74       <artifactId>org.apache.felix.gogo.runtime</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>equinoxSDK381</groupId>
78       <artifactId>org.apache.felix.gogo.shell</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>ch.qos.logback</groupId>
82       <artifactId>logback-core</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>ch.qos.logback</groupId>
86       <artifactId>logback-classic</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>junit</groupId>
90       <artifactId>junit</artifactId>
91       <scope>test</scope>
92     </dependency>
93   </dependencies>
94 </project>