1a6b9c29ae501d4f3e542438fa4455712c05db84
[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           <version>${karaf.version}</version>
30           <scope>provided</scope>
31       </dependency>
32       <dependency>
33           <groupId>org.apache.karaf.shell</groupId>
34           <artifactId>org.apache.karaf.shell.table</artifactId>
35           <version>${karaf.version}</version>
36           <scope>provided</scope>
37       </dependency>
38
39       <!-- Project Dependencies -->
40       <dependency>
41           <groupId>org.opendaylight.netconf</groupId>
42           <artifactId>sal-netconf-connector</artifactId>
43       </dependency>
44       <dependency>
45           <groupId>org.mockito</groupId>
46           <artifactId>mockito-core</artifactId>
47           <scope>test</scope>
48       </dependency>
49       <dependency>
50           <groupId>org.powermock</groupId>
51           <artifactId>powermock-module-junit4</artifactId>
52           <scope>test</scope>
53       </dependency>
54       <dependency>
55           <groupId>org.powermock</groupId>
56           <artifactId>powermock-api-mockito</artifactId>
57           <scope>test</scope>
58       </dependency>
59       <dependency>
60           <groupId>org.powermock</groupId>
61           <artifactId>powermock-core</artifactId>
62       </dependency>
63       <dependency>
64           <groupId>org.opendaylight.yangtools</groupId>
65           <artifactId>yang-test-util</artifactId>
66       </dependency>
67       <dependency>
68           <groupId>org.opendaylight.controller</groupId>
69           <artifactId>sal-binding-broker-impl</artifactId>
70           <scope>test</scope>
71     </dependency>
72   </dependencies>
73 </project>