Bump exificient to 1.0.4
[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.4</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
66     <dependency>
67       <groupId>com.siemens.ct.exi</groupId>
68       <artifactId>exificient</artifactId>
69     </dependency>
70
71     <dependency>
72       <groupId>xml-apis</groupId>
73       <artifactId>xml-apis</artifactId>
74       <version>1.4.01</version>
75     </dependency>
76     <dependency>
77       <groupId>org.slf4j</groupId>
78       <artifactId>slf4j-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.xmlunit</groupId>
82       <artifactId>xmlunit-legacy</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.yangtools</groupId>
86       <artifactId>mockito-configuration</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.aaa</groupId>
90       <artifactId>aaa-encrypt-service</artifactId>
91       <version>0.9.0-SNAPSHOT</version>
92     </dependency>
93
94     <!-- test dependencies -->
95     <dependency>
96       <groupId>${project.groupId}</groupId>
97       <artifactId>netconf-util</artifactId>
98       <type>test-jar</type>
99       <scope>test</scope>
100     </dependency>
101   </dependencies>
102
103 </project>