[maven-release-plugin] prepare release releasepom-0.1.0
[controller.git] / opendaylight / sal / 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.0</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
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>releasepom-0.1.0</tag>
15   </scm>
16
17   <artifactId>sal</artifactId>
18   <version>0.5.0</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.slf4j,
32               org.osgi.framework,
33               org.apache.commons.lang3.builder,
34               org.apache.felix.dm,
35               org.apache.commons.lang3.tuple,
36               javax.xml.bind.annotation,
37               javax.xml.bind.annotation.adapters
38             </Import-Package>
39             <Export-Package>
40               org.opendaylight.controller.sal.authorization,
41               org.opendaylight.controller.sal.action,
42               org.opendaylight.controller.sal.core,
43               org.opendaylight.controller.sal.discovery,
44               org.opendaylight.controller.sal.topology,
45               org.opendaylight.controller.sal.routing,
46               org.opendaylight.controller.sal.packet,
47               org.opendaylight.controller.sal.packet.address,
48               org.opendaylight.controller.sal.utils,
49               org.opendaylight.controller.sal.match,
50               org.opendaylight.controller.sal.inventory,
51               org.opendaylight.controller.sal.flowprogrammer,
52               org.opendaylight.controller.sal.reader
53             </Export-Package>
54           </instructions>
55           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60   <dependencies>
61     <dependency>
62       <groupId>junit</groupId>
63       <artifactId>junit</artifactId>
64       <version>4.8.1</version>
65       <scope>test</scope>
66     </dependency>
67   </dependencies>
68 </project>