Merge "BUG-472: fix integration test breakage"
[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.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>clustering.test</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>ch.qos.logback</groupId>
17       <artifactId>logback-classic</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>ch.qos.logback</groupId>
21       <artifactId>logback-core</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>equinoxSDK381</groupId>
25       <artifactId>org.apache.felix.gogo.command</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>equinoxSDK381</groupId>
29       <artifactId>org.apache.felix.gogo.runtime</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>equinoxSDK381</groupId>
33       <artifactId>org.apache.felix.gogo.shell</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>equinoxSDK381</groupId>
37       <artifactId>org.eclipse.osgi</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>equinoxSDK381</groupId>
41       <artifactId>org.eclipse.osgi.services</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>clustering.services</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>sal</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>junit</groupId>
53       <artifactId>junit</artifactId>
54       <scope>test</scope>
55     </dependency>
56   </dependencies>
57
58   <build>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.felix</groupId>
62         <artifactId>maven-bundle-plugin</artifactId>
63         <version>${bundle.plugin.version}</version>
64         <extensions>true</extensions>
65         <configuration>
66           <instructions>
67             <Import-Package>org.slf4j,
68             javax.transaction,
69             org.eclipse.osgi.framework.console,
70             ch.qos.logback.classic,
71             org.opendaylight.controller.clustering.services,
72             org.opendaylight.controller.sal.core,
73             org.apache.felix.dm</Import-Package>
74             <Export-Package>org.opendaylight.controller.clustering.test.internal</Export-Package>
75             <Bundle-Activator>org.opendaylight.controller.clustering.test.internal.Activator</Bundle-Activator>
76           </instructions>
77           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
78         </configuration>
79       </plugin>
80     </plugins>
81   </build>
82   <scm>
83     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
84     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
85     <tag>HEAD</tag>
86     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
87   </scm>
88 </project>