Merge "Add missing copyright text"
[controller.git] / opendaylight / adsal / topologymanager / 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.6.0-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>topologymanager.shell</artifactId>
11   <version>${topologymanager.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>topologymanager</artifactId>
30     </dependency>
31   </dependencies>
32
33   <build>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.felix</groupId>
37         <artifactId>maven-bundle-plugin</artifactId>
38         <configuration>
39           <instructions>
40             <Import-Package>org.apache.felix.service.command,
41               org.apache.karaf.shell.commands,
42               org.apache.karaf.shell.console,
43               *</Import-Package>
44           </instructions>
45         </configuration>
46       </plugin>
47     </plugins>
48   </build>
49
50 </project>