Release Carbon
[unimgr.git] / cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cable Television Laboratories, Inc. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <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">
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.6.1-Carbon</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.unimgr</groupId>
20   <artifactId>unimgr-cli</artifactId>
21   <version>0.2.1-Carbon</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: unimgr :: ${project.artifactId}</name>
26   
27   <dependencies>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>unimgr-impl</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33
34     <dependency>
35      <groupId>org.apache.karaf.shell</groupId>
36      <artifactId>org.apache.karaf.shell.console</artifactId>
37      <version>${karaf.version}</version>
38     </dependency>
39
40     <!-- Testing Dependencies -->
41     <dependency>
42       <groupId>junit</groupId>
43       <artifactId>junit</artifactId>
44       <scope>test</scope>
45     </dependency>
46
47     <dependency>
48       <groupId>org.mockito</groupId>
49       <artifactId>mockito-core</artifactId>
50       <scope>test</scope>
51     </dependency>
52
53     <dependency>
54       <groupId>org.powermock</groupId>
55       <artifactId>powermock-core</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.powermock</groupId>
60       <artifactId>powermock-module-junit4</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.powermock</groupId>
65       <artifactId>powermock-api-mockito</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.powermock</groupId>
70       <artifactId>powermock-api-support</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.powermock</groupId>
75       <artifactId>powermock-reflect</artifactId>
76       <scope>test</scope>
77     </dependency>
78   </dependencies>
79
80   <build>
81     <plugins>
82       <plugin>
83         <groupId>org.apache.felix</groupId>
84         <artifactId>maven-bundle-plugin</artifactId>
85         <extensions>true</extensions>
86         <configuration>
87           <instructions>
88             <!-- This bundle works with Karaf 3 and 4.0, see https://wiki.opendaylight.org/view/Karaf_4_migration#Karaf_CLI_commands -->
89             <Import-Package>
90               org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
91               org.apache.karaf.shell.console;version="[3.0.0,4.1)",
92               *
93             </Import-Package>
94           </instructions>
95         </configuration>
96       </plugin>
97     </plugins>
98   </build>
99
100 </project>