Fixed most comments from https://git.opendaylight.org/gerrit/#/c/1721/
[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"
2   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.1-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10
11   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15     <tag>HEAD</tag>
16   </scm>
17
18   <artifactId>bundlescanner.implementation</artifactId>
19   <version>0.4.1-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.apache.felix.dm,
33               org.objectweb.asm,
34               org.opendaylight.controller.sal.core,
35               org.opendaylight.controller.northbound.bundlescanner,
36               org.osgi.framework,
37               org.slf4j,
38               javax.ws.rs,
39               javax.ws.rs.core,
40               javax.xml.bind.annotation,
41               javax.xml.bind,
42             </Import-Package>
43             <Bundle-Activator>
44               org.opendaylight.controller.northbound.bundlescanner.internal.Activator
45             </Bundle-Activator>
46           </instructions>
47         </configuration>
48       </plugin>
49     </plugins>
50   </build>
51
52   <dependencies>
53     <dependency>
54       <groupId>org.ow2.asm</groupId>
55       <artifactId>asm-all</artifactId>
56       <version>4.1</version>
57     </dependency>
58     <dependency>
59       <groupId>junit</groupId>
60       <artifactId>junit</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.springframework.osgi</groupId>
64       <artifactId>spring-osgi-mock</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>bundlescanner</artifactId>
70       <version>0.4.1-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal</artifactId>
75       <version>0.5.1-SNAPSHOT</version>
76     </dependency>
77   </dependencies>
78 </project>