Bump versions to 5.0.2-SNAPSHOT
[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>5.0.2-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <artifactId>netconf-netty-util</artifactId>
20   <packaging>bundle</packaging>
21   <name>${project.artifactId}</name>
22
23   <dependencies>
24     <!-- compile dependencies -->
25     <dependency>
26       <groupId>com.google.guava</groupId>
27       <artifactId>guava</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.checkerframework</groupId>
31       <artifactId>checker-qual</artifactId>
32       <scope>provided</scope>
33     </dependency>
34     <dependency>
35       <groupId>io.netty</groupId>
36       <artifactId>netty-buffer</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>io.netty</groupId>
40       <artifactId>netty-codec</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>io.netty</groupId>
44       <artifactId>netty-common</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>io.netty</groupId>
48       <artifactId>netty-handler</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>io.netty</groupId>
52       <artifactId>netty-transport</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.aaa</groupId>
56       <artifactId>aaa-encrypt-service</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>util</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>yang-common</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.netconf</groupId>
68       <artifactId>netconf-api</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.netconf</groupId>
72       <artifactId>netconf-util</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.netconf</groupId>
76       <artifactId>shaded-exificient</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.netconf</groupId>
80       <artifactId>shaded-sshd</artifactId>
81     </dependency>
82
83     <!-- test dependencies -->
84     <dependency>
85       <groupId>org.xmlunit</groupId>
86       <artifactId>xmlunit-legacy</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.yangtools</groupId>
90       <artifactId>mockito-configuration</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>${project.groupId}</groupId>
94       <artifactId>netconf-util</artifactId>
95       <type>test-jar</type>
96       <scope>test</scope>
97     </dependency>
98   </dependencies>
99 </project>