Merge "Add missing copyright text"
[controller.git] / opendaylight / adsal / containermanager / implementation / 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.6.0-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>containermanager.implementation</artifactId>
12   <version>0.7.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>appauth</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>clustering.services</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>configuration</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>containermanager</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>topologymanager</artifactId>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <extensions>true</extensions>
47         <configuration>
48           <instructions>
49             <Import-Package>org.opendaylight.controller.containermanager,
50               org.opendaylight.controller.appauth.authorization,
51               org.opendaylight.controller.configuration,
52               org.opendaylight.controller.clustering.services,
53               org.opendaylight.controller.sal.authorization,
54               org.opendaylight.controller.sal.packet,
55               org.opendaylight.controller.sal.utils,
56               org.opendaylight.controller.sal.core,
57               org.opendaylight.controller.sal.action,
58               org.opendaylight.controller.sal.flowprogrammer,
59               org.opendaylight.controller.sal.match,
60               org.opendaylight.controller.sal.reader,
61               org.opendaylight.controller.topologymanager,
62               org.eclipse.osgi.framework.console,
63               org.osgi.framework,
64               org.slf4j,
65               org.apache.felix.dm</Import-Package>
66             <Export-Package></Export-Package>
67             <Bundle-Activator>org.opendaylight.controller.containermanager.internal.Activator</Bundle-Activator>
68           </instructions>
69           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
70         </configuration>
71       </plugin>
72     </plugins>
73   </build>
74   <scm>
75     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
76     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
77     <tag>HEAD</tag>
78     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
79   </scm>
80 </project>