3c053f441a0ee82a88bb44b52baecd6ff6e2d9cd
[controller.git] / opendaylight / containermanager / 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.1-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>containermanager</artifactId>
18   <version>0.5.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.opendaylight.controller.configuration,
32               org.opendaylight.controller.sal.authorization,
33               org.opendaylight.controller.sal.utils,
34               org.opendaylight.controller.sal.core,
35               org.opendaylight.controller.sal.action,
36               org.opendaylight.controller.sal.match,
37               org.opendaylight.controller.sal.packet,
38               org.opendaylight.controller.sal.reader,
39               org.slf4j,
40               javax.xml.bind.annotation,
41               javax.xml.bind
42             </Import-Package>
43             <Export-Package>
44               org.opendaylight.controller.containermanager
45             </Export-Package>
46           </instructions>
47           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
48         </configuration>
49       </plugin>
50     </plugins>
51   </build>
52   <dependencies>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>configuration</artifactId>
60     </dependency>
61   </dependencies>
62 </project>