Unify maven-bundle-plugin version at 2.4.0
[controller.git] / opendaylight / northbound / bundlescanner / api / 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.2-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>bundlescanner</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.osgi</groupId>
18       <artifactId>org.osgi.core</artifactId>
19     </dependency>
20   </dependencies>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.felix</groupId>
26         <artifactId>maven-bundle-plugin</artifactId>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Import-Package>org.osgi.framework,
31               org.slf4j,
32               javax.ws.rs,
33               javax.ws.rs.core,
34               javax.xml.bind.annotation,
35               javax.xml.bind,</Import-Package>
36             <Export-Package>org.opendaylight.controller.northbound.bundlescanner</Export-Package>
37           </instructions>
38         </configuration>
39       </plugin>
40     </plugins>
41   </build>
42
43   <scm>
44     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
45     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
46     <tag>HEAD</tag>
47     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
48   </scm>
49 </project>