f4f741d638541a8e5762c8ae2ef0c5f7df185dc8
[controller.git] / opendaylight / containermanager / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.0-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>containermanager</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>org.apache.felix</groupId>
20         <artifactId>maven-bundle-plugin</artifactId>
21         <version>2.3.6</version>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Import-Package>
26                   org.opendaylight.controller.sal.action,
27                   org.opendaylight.controller.sal.authorization,
28                   org.opendaylight.controller.sal.core,
29                   org.opendaylight.controller.sal.flowprogrammer,
30                   org.opendaylight.controller.sal.match,
31               org.opendaylight.controller.sal.reader,
32               org.opendaylight.controller.sal.utils,
33               org.apache.commons.lang3.builder
34             </Import-Package>
35             <Export-Package>
36               org.opendaylight.controller.containermanager
37             </Export-Package>
38           </instructions>
39         </configuration>
40       </plugin>
41     </plugins>
42   </build>
43   <dependencies>
44         <dependency>
45                 <groupId>org.opendaylight.controller</groupId>
46                 <artifactId>sal</artifactId>
47                 <version>0.5.0-SNAPSHOT</version>
48         </dependency> 
49   </dependencies>
50 </project>