Prepare for mvn release:prepare release:perform operation
[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.0-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   </scm>
15
16   <artifactId>clustering.test</artifactId>
17   <version>0.4.0-SNAPSHOT</version>
18   <packaging>bundle</packaging>
19
20   <build>
21   <plugins>
22     <plugin>
23       <groupId>org.apache.felix</groupId>
24       <artifactId>maven-bundle-plugin</artifactId>
25       <version>2.3.6</version>
26       <extensions>true</extensions>
27       <configuration>
28         <instructions>
29           <Import-Package>
30             org.slf4j,
31             javax.transaction,
32             org.eclipse.osgi.framework.console,
33             ch.qos.logback.classic,
34             org.opendaylight.controller.clustering.services,
35             org.opendaylight.controller.sal.core,
36             org.apache.felix.dm
37           </Import-Package>
38           <Bundle-Activator>
39             org.opendaylight.controller.clustering.test.internal.Activator
40           </Bundle-Activator>
41         </instructions>
42         <manifestLocation>${project.basedir}/META-INF</manifestLocation>
43       </configuration>
44     </plugin>
45   </plugins>
46   </build>
47   <dependencies>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>clustering.services</artifactId>
51       <version>0.4.0-SNAPSHOT</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal</artifactId>
56       <version>0.5.0-SNAPSHOT</version>
57     </dependency>
58   </dependencies>
59 </project>