Remove checkstyle config from child poms
[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.5.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.5.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>0.9.7</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       <version>1.6.0</version>
61     </dependency>
62     <dependency>
63       <groupId>com.siemens.ct.exi</groupId>
64       <artifactId>exificient</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>xml-apis</groupId>
68       <artifactId>xml-apis</artifactId>
69       <version>1.4.01</version>
70     </dependency>
71     <dependency>
72       <groupId>org.slf4j</groupId>
73       <artifactId>slf4j-api</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>xmlunit</groupId>
77       <artifactId>xmlunit</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.yangtools</groupId>
81       <artifactId>mockito-configuration</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.aaa</groupId>
85       <artifactId>aaa-encrypt-service</artifactId>
86       <version>0.8.0-SNAPSHOT</version>
87     </dependency>
88   </dependencies>
89
90 </project>