Merge "added containermanager shell feature"
[controller.git] / opendaylight / containermanager / shell / 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.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>containermanager.shell</artifactId>
11   <version>${containermanager.shell.version}</version>
12   <packaging>bundle</packaging>
13   <dependencies>
14     <dependency>
15       <groupId>junit</groupId>
16       <artifactId>junit</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.apache.karaf.shell</groupId>
20       <artifactId>org.apache.karaf.shell.console</artifactId>
21       <version>${karaf.shell.version}</version>
22     </dependency>
23     <dependency>
24       <groupId>org.mockito</groupId>
25       <artifactId>mockito-all</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>containermanager</artifactId>
30       <version>${containermanager.version}</version>
31     </dependency>
32   </dependencies>
33
34   <build>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <version>${bundle.plugin.version}</version>
40         <configuration>
41           <instructions>
42             <Import-Package>org.apache.felix.service.command,
43               org.apache.karaf.shell.commands,
44               org.apache.karaf.shell.console,
45               *</Import-Package>
46           </instructions>
47         </configuration>
48       </plugin>
49     </plugins>
50   </build>
51
52 </project>