Merge "sal-remoterpc-connector: sync ch.qos.logback:logback-classic version"
[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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.1-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
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>sal</artifactId>
19   <version>0.7.0-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.slf4j,
33               org.osgi.framework,
34               org.apache.commons.lang3.builder,
35               org.apache.felix.dm,
36               org.apache.commons.lang3.tuple,
37               javax.xml.bind.annotation,
38               javax.xml.bind.annotation.adapters
39             </Import-Package>
40             <Export-Package>
41               org.opendaylight.controller.sal.authorization,
42               org.opendaylight.controller.sal.action,
43               org.opendaylight.controller.sal.core,
44               org.opendaylight.controller.sal.discovery,
45               org.opendaylight.controller.sal.topology,
46               org.opendaylight.controller.sal.routing,
47               org.opendaylight.controller.sal.packet,
48               org.opendaylight.controller.sal.packet.address,
49               org.opendaylight.controller.sal.utils,
50               org.opendaylight.controller.sal.match,
51               org.opendaylight.controller.sal.inventory,
52               org.opendaylight.controller.sal.flowprogrammer,
53               org.opendaylight.controller.sal.reader
54             </Export-Package>
55           </instructions>
56           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
61   <dependencies>
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.osgi</groupId>
68       <artifactId>org.osgi.core</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.slf4j</groupId>
72       <artifactId>slf4j-api</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.apache.felix</groupId>
76       <artifactId>org.apache.felix.dependencymanager</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.apache.commons</groupId>
80       <artifactId>commons-lang3</artifactId>
81     </dependency>
82   </dependencies>
83 </project>