edgeUpdate API enhancement and related changes.
[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   <groupId>org.opendaylight.controller</groupId>
13   <artifactId>containermanager</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.felix</groupId>
21         <artifactId>maven-bundle-plugin</artifactId>
22         <version>2.3.6</version>
23         <extensions>true</extensions>
24         <configuration>
25           <instructions>
26             <Import-Package>
27                   org.opendaylight.controller.sal.action,
28                   org.opendaylight.controller.sal.authorization,
29                   org.opendaylight.controller.sal.core,
30                   org.opendaylight.controller.sal.flowprogrammer,
31                   org.opendaylight.controller.sal.match,
32               org.opendaylight.controller.sal.reader,
33               org.opendaylight.controller.sal.utils,
34               org.apache.commons.lang3.builder
35             </Import-Package>
36             <Export-Package>
37               org.opendaylight.controller.containermanager
38             </Export-Package>
39           </instructions>
40         </configuration>
41       </plugin>
42     </plugins>
43   </build>
44   <dependencies>
45         <dependency>
46                 <groupId>org.opendaylight.controller</groupId>
47                 <artifactId>sal</artifactId>
48                 <version>0.5.0-SNAPSHOT</version>
49         </dependency> 
50   </dependencies>
51 </project>