Merge "Bug 1029: Remove dead code: samples/clustersession"
[controller.git] / opendaylight / adsal / northbound / bundlescanner / implementation / 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>../../../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>bundlescanner.implementation</artifactId>
12   <version>0.5.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>junit</groupId>
18       <artifactId>junit</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>bundlescanner</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.ow2.asm</groupId>
30       <artifactId>asm-all</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.springframework.osgi</groupId>
34       <artifactId>spring-osgi-mock</artifactId>
35       <scope>test</scope>
36     </dependency>
37   </dependencies>
38
39   <build>
40     <plugins>
41       <plugin>
42         <groupId>org.apache.felix</groupId>
43         <artifactId>maven-bundle-plugin</artifactId>
44         <extensions>true</extensions>
45         <configuration>
46           <instructions>
47             <Import-Package>org.apache.felix.dm,
48               org.objectweb.asm,
49               org.opendaylight.controller.sal.core,
50               org.opendaylight.controller.northbound.bundlescanner,
51               org.osgi.framework,
52               org.slf4j,
53               javax.ws.rs,
54               javax.ws.rs.core,
55               javax.xml.bind.annotation,
56               javax.xml.bind,</Import-Package>
57             <Bundle-Activator>org.opendaylight.controller.northbound.bundlescanner.internal.Activator</Bundle-Activator>
58           </instructions>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63
64   <scm>
65     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
66     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
67     <tag>HEAD</tag>
68     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
69   </scm>
70 </project>