ed4f3300bae2220e35416b6c7a76353a6472f3bc
[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.4.0-SNAPSHOT</version>
8     <relativePath>../../../opendaylight/commons/opendaylight</relativePath>
9   </parent>
10
11         <groupId>org.opendaylight.controller</groupId>
12         <artifactId>northboundtest</artifactId>
13         <version>0.4.0-SNAPSHOT</version>
14         <packaging>bundle</packaging>
15
16         <build>
17                 <plugins>
18                         <plugin>
19                                 <groupId>org.apache.felix</groupId>
20                                 <artifactId>maven-bundle-plugin</artifactId>
21                                 <version>2.3.6</version>
22                                 <extensions>true</extensions>
23                                 <configuration>
24                                         <instructions>
25                                                 <Import-Package>
26                                                         org.opendaylight.controller.sal.core,
27                                                         org.eclipse.osgi.framework.console,
28                                                         org.osgi.framework,
29                                         org.apache.felix.dm
30                                                 </Import-Package>
31                                                 <Export-Package>
32                                                 </Export-Package>
33                                                 <Bundle-Activator>
34                                           org.opendaylight.controller.northboundtest.unittestsuite.internal.Activator
35                                         </Bundle-Activator>
36                                                 <Service-Component>
37                                                 </Service-Component>
38                                         </instructions>
39                                 </configuration>
40                         </plugin>
41                 </plugins>
42         </build>
43         <dependencies>
44                 <dependency>
45                         <groupId>org.opendaylight.controller</groupId>
46                         <artifactId>sal</artifactId>
47                         <version>0.4.0-SNAPSHOT</version>
48                 </dependency>
49         </dependencies>
50 </project>