Migrate shell components to new APIs
[netconf.git] / netconf / netconf-console / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016 Inocybe Technologies. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.netconf</groupId>
13     <artifactId>netconf-parent</artifactId>
14     <version>1.5.0-SNAPSHOT</version>
15     <relativePath>../netconf-parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>netconf-console</artifactId>
20   <version>1.5.0-SNAPSHOT</version>
21   <name>${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25       <!-- Apache Karaf console dependency -->
26       <dependency>
27           <groupId>org.apache.karaf.shell</groupId>
28           <artifactId>org.apache.karaf.shell.console</artifactId>
29           <scope>provided</scope>
30       </dependency>
31
32       <!-- Project Dependencies -->
33       <dependency>
34           <groupId>org.opendaylight.netconf</groupId>
35           <artifactId>sal-netconf-connector</artifactId>
36       </dependency>
37       <dependency>
38           <groupId>org.mockito</groupId>
39           <artifactId>mockito-core</artifactId>
40           <scope>test</scope>
41       </dependency>
42       <dependency>
43           <groupId>org.powermock</groupId>
44           <artifactId>powermock-module-junit4</artifactId>
45           <scope>test</scope>
46       </dependency>
47       <dependency>
48           <groupId>org.powermock</groupId>
49           <artifactId>powermock-api-mockito</artifactId>
50           <scope>test</scope>
51       </dependency>
52       <dependency>
53           <groupId>org.powermock</groupId>
54           <artifactId>powermock-core</artifactId>
55       </dependency>
56       <dependency>
57           <groupId>org.opendaylight.yangtools</groupId>
58           <artifactId>yang-test-util</artifactId>
59       </dependency>
60       <dependency>
61           <groupId>org.opendaylight.controller</groupId>
62           <artifactId>sal-binding-broker-impl</artifactId>
63           <scope>test</scope>
64     </dependency>
65   </dependencies>
66 </project>