Bug 7432 - eliminate use of yang-parser-impl internals
[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.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.6.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>netconf-console</artifactId>
20   <version>1.2.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     </dependency>
31     <dependency>
32      <groupId>org.apache.karaf.shell</groupId>
33      <artifactId>org.apache.karaf.shell.table</artifactId>
34      <version>${karaf.version}</version>
35     </dependency>
36
37     <!-- Project Dependencies -->
38     <dependency>
39       <groupId>org.opendaylight.netconf</groupId>
40       <artifactId>sal-netconf-connector</artifactId>
41       <version>${mdsal.version}</version>
42     </dependency>
43       <dependency>
44           <groupId>org.mockito</groupId>
45           <artifactId>mockito-all</artifactId>
46           <scope>test</scope>
47       </dependency>
48       <dependency>
49           <groupId>org.opendaylight.controller</groupId>
50           <artifactId>sal-distributed-datastore</artifactId>
51           <scope>test</scope>
52       </dependency>
53       <dependency>
54           <groupId>org.powermock</groupId>
55           <artifactId>powermock-module-junit4</artifactId>
56           <scope>test</scope>
57       </dependency>
58       <dependency>
59           <groupId>org.powermock</groupId>
60           <artifactId>powermock-api-mockito</artifactId>
61           <scope>test</scope>
62       </dependency>
63       <dependency>
64           <groupId>org.powermock</groupId>
65           <artifactId>powermock-core</artifactId>
66       </dependency>
67       <dependency>
68           <groupId>org.opendaylight.yangtools</groupId>
69           <artifactId>yang-test-util</artifactId>
70       </dependency>
71   </dependencies>
72 </project>