Integrate MRI projects for Neon
[netconf.git] / netconf / netconf-netty-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2014 Cisco Systems, Inc. and others.  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
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   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-parent</artifactId>
15     <version>1.6.0-SNAPSHOT</version>
16     <relativePath>../netconf-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-netty-util</artifactId>
21   <packaging>bundle</packaging>
22   <version>1.6.0-SNAPSHOT</version>
23   <name>${project.artifactId}</name>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>com.siemens.ct.exi</groupId>
29         <artifactId>exificient</artifactId>
30         <version>1.0.1</version>
31       </dependency>
32     </dependencies>
33   </dependencyManagement>
34
35   <dependencies>
36     <!-- compile dependencies -->
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>netconf-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>${project.groupId}</groupId>
43       <artifactId>netconf-mapping-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>${project.groupId}</groupId>
47       <artifactId>netconf-util</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>com.google.guava</groupId>
51       <artifactId>guava</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>io.netty</groupId>
55       <artifactId>netty-handler</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.apache.sshd</groupId>
59       <artifactId>sshd-core</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.apache.sshd</groupId>
63       <artifactId>sshd-netty</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>com.siemens.ct.exi</groupId>
67       <artifactId>exificient</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>xml-apis</groupId>
71       <artifactId>xml-apis</artifactId>
72       <version>1.4.01</version>
73     </dependency>
74     <dependency>
75       <groupId>org.slf4j</groupId>
76       <artifactId>slf4j-api</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.xmlunit</groupId>
80       <artifactId>xmlunit-legacy</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.yangtools</groupId>
84       <artifactId>mockito-configuration</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.aaa</groupId>
88       <artifactId>aaa-encrypt-service</artifactId>
89       <version>0.9.0-SNAPSHOT</version>
90     </dependency>
91
92     <!-- test dependencies -->
93     <dependency>
94       <groupId>${project.groupId}</groupId>
95       <artifactId>netconf-util</artifactId>
96       <type>test-jar</type>
97       <scope>test</scope>
98     </dependency>
99   </dependencies>
100
101 </project>