Merge "Fixed publishDataChangeEvent in 2phase commit"
[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.2-SNAPSHOT</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>HEAD</tag>
15   </scm>
16
17   <artifactId>sal</artifactId>
18   <version>0.7.1-SNAPSHOT</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     </dependency>
65     <dependency>
66       <groupId>org.osgi</groupId>
67       <artifactId>org.osgi.core</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.slf4j</groupId>
71       <artifactId>slf4j-api</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.apache.felix</groupId>
75       <artifactId>org.apache.felix.dependencymanager</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.apache.commons</groupId>
79       <artifactId>commons-lang3</artifactId>
80     </dependency>
81   </dependencies>
82 </project>