Bump versions to 7.0.1-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>7.0.1-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.github.spotbugs</groupId>
27       <artifactId>spotbugs-annotations</artifactId>
28       <optional>true</optional>
29     </dependency>
30     <dependency>
31       <groupId>com.google.guava</groupId>
32       <artifactId>guava</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.checkerframework</groupId>
36       <artifactId>checker-qual</artifactId>
37       <scope>provided</scope>
38     </dependency>
39     <dependency>
40       <groupId>io.netty</groupId>
41       <artifactId>netty-buffer</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>io.netty</groupId>
45       <artifactId>netty-codec</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>io.netty</groupId>
49       <artifactId>netty-common</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>io.netty</groupId>
53       <artifactId>netty-handler</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>io.netty</groupId>
57       <artifactId>netty-transport</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.eclipse.jdt</groupId>
61       <artifactId>org.eclipse.jdt.annotation</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.odlparent</groupId>
65       <artifactId>logging-markers</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>util</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.yangtools</groupId>
73       <artifactId>yang-common</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.netconf</groupId>
77       <artifactId>netconf-api</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.netconf</groupId>
81       <artifactId>netconf-common</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.netconf</groupId>
85       <artifactId>shaded-exificient</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.netconf.model</groupId>
89       <artifactId>rfc6241</artifactId>
90     </dependency>
91
92     <!-- test dependencies -->
93     <dependency>
94       <groupId>org.opendaylight.yangtools</groupId>
95       <artifactId>mockito-configuration</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.netconf</groupId>
99       <artifactId>netconf-test-util</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.xmlunit</groupId>
103       <artifactId>xmlunit-core</artifactId>
104     </dependency>
105   </dependencies>
106 </project>