a443d991993f391fdacffdc67e89fbec4512fe21
[controller.git] / opendaylight / northbound / bundlescanner / implementation / pom.xml
1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>org.opendaylight.controller</groupId>
5     <artifactId>commons.opendaylight</artifactId>
6     <version>1.4.1</version>
7     <relativePath>../../../commons/opendaylight</relativePath>
8   </parent>
9
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     <tag>master-tagforprepareonly-controller-bulk-release-2-1</tag>
15   </scm>
16
17   <artifactId>bundlescanner.implementation</artifactId>
18   <version>0.4.1</version>
19   <packaging>bundle</packaging>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Import-Package>
31               org.apache.felix.dm,
32               org.objectweb.asm,
33               org.opendaylight.controller.sal.core,
34               org.opendaylight.controller.northbound.bundlescanner,
35               org.osgi.framework,
36               org.slf4j,
37               javax.ws.rs,
38               javax.ws.rs.core,
39               javax.xml.bind.annotation,
40               javax.xml.bind,
41             </Import-Package>
42             <Bundle-Activator>
43               org.opendaylight.controller.northbound.bundlescanner.internal.Activator
44             </Bundle-Activator>
45           </instructions>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50
51   <dependencies>
52     <dependency>
53       <groupId>org.ow2.asm</groupId>
54       <artifactId>asm-all</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.springframework.osgi</groupId>
62       <artifactId>spring-osgi-mock</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>bundlescanner</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>sal</artifactId>
72     </dependency>
73   </dependencies>
74 </project>