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