Merge "BUG-2329 Add test for anyxmls inside rpc resonse for netcfon-connector"
[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.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>sal</artifactId>
12   <version>0.9.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.apache.commons</groupId>
21       <artifactId>commons-lang3</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.apache.felix</groupId>
25       <artifactId>org.apache.felix.dependencymanager</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.osgi</groupId>
29       <artifactId>org.osgi.core</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.slf4j</groupId>
33       <artifactId>slf4j-api</artifactId>
34     </dependency>
35   </dependencies>
36
37   <build>
38     <plugins>
39       <plugin>
40         <groupId>org.apache.felix</groupId>
41         <artifactId>maven-bundle-plugin</artifactId>
42         <extensions>true</extensions>
43         <configuration>
44           <instructions>
45             <Import-Package>org.slf4j,
46               org.osgi.framework,
47               org.apache.commons.lang3.builder,
48               org.apache.felix.dm,
49               org.apache.commons.lang3.tuple,
50               javax.xml.bind.annotation,
51               javax.xml.bind.annotation.adapters</Import-Package>
52             <Export-Package>org.opendaylight.controller.sal.authorization,
53               org.opendaylight.controller.sal.action,
54               org.opendaylight.controller.sal.core,
55               org.opendaylight.controller.sal.discovery,
56               org.opendaylight.controller.sal.topology,
57               org.opendaylight.controller.sal.routing,
58               org.opendaylight.controller.sal.packet,
59               org.opendaylight.controller.sal.packet.address,
60               org.opendaylight.controller.sal.utils,
61               org.opendaylight.controller.sal.match,
62               org.opendaylight.controller.sal.inventory,
63               org.opendaylight.controller.sal.flowprogrammer,
64               org.opendaylight.controller.sal.reader</Export-Package>
65           </instructions>
66           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
67         </configuration>
68       </plugin>
69     </plugins>
70   </build>
71   <scm>
72     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
73     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
74     <tag>HEAD</tag>
75     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
76   </scm>
77 </project>