Bug 1029: Remove dead code: samples/clustersession
[controller.git] / opendaylight / northboundtest / unit_test_suite / 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.5.0-SNAPSHOT</version>
8     <relativePath>../../../opendaylight/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
17         <groupId>org.opendaylight.controller</groupId>
18         <artifactId>northboundtest</artifactId>
19         <version>0.5.0-SNAPSHOT</version>
20         <packaging>bundle</packaging>
21
22         <build>
23                 <plugins>
24                         <plugin>
25                                 <groupId>org.apache.felix</groupId>
26                                 <artifactId>maven-bundle-plugin</artifactId>
27                                 <version>${bundle.plugin.version}</version>
28                                 <extensions>true</extensions>
29                                 <configuration>
30                                         <instructions>
31                                                 <Import-Package>
32                                                         org.opendaylight.controller.sal.core,
33                                                         org.eclipse.osgi.framework.console,
34                                                         org.osgi.framework,
35                                         org.apache.felix.dm
36                                                 </Import-Package>
37                                                 <Export-Package>
38                                                 </Export-Package>
39                                                 <Bundle-Activator>
40                                           org.opendaylight.controller.northboundtest.unittestsuite.internal.Activator
41                                         </Bundle-Activator>
42                                                 <Service-Component>
43                                                 </Service-Component>
44                                         </instructions>
45                                 </configuration>
46                         </plugin>
47                 </plugins>
48         </build>
49         <dependencies>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal</artifactId>
53     </dependency>
54   </dependencies>
55 </project>