Merge "NETCONF-241: Switch to using Exificient"
[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.odlparent</groupId>
14     <artifactId>bundle-parent</artifactId>
15     <version>3.0.2</version>
16     <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>org.opendaylight.netconf</groupId>
29         <artifactId>netconf-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.yangtools</groupId>
36         <artifactId>yangtools-artifacts</artifactId>
37         <version>2.0.2</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41       <dependency>
42         <groupId>com.siemens.ct.exi</groupId>
43         <artifactId>exificient</artifactId>
44         <version>0.9.7</version>
45       </dependency>
46     </dependencies>
47   </dependencyManagement>
48
49   <dependencies>
50     <!-- compile dependencies -->
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>netconf-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>netconf-mapping-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>netconf-util</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>com.google.guava</groupId>
65       <artifactId>guava</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>io.netty</groupId>
69       <artifactId>netty-handler</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.apache.sshd</groupId>
73       <artifactId>sshd-core</artifactId>
74       <version>1.6.0</version>
75     </dependency>
76     <dependency>
77       <groupId>com.siemens.ct.exi</groupId>
78       <artifactId>exificient</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>xml-apis</groupId>
82       <artifactId>xml-apis</artifactId>
83       <version>1.4.01</version>
84     </dependency>
85     <dependency>
86       <groupId>org.slf4j</groupId>
87       <artifactId>slf4j-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>xmlunit</groupId>
91       <artifactId>xmlunit</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.yangtools</groupId>
95       <artifactId>mockito-configuration</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.aaa</groupId>
99       <artifactId>aaa-encrypt-service</artifactId>
100       <version>0.8.0-SNAPSHOT</version>
101     </dependency>
102   </dependencies>
103
104   <build>
105     <plugins>
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-checkstyle-plugin</artifactId>
109         <configuration>
110           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
111         </configuration>
112       </plugin>
113     </plugins>
114   </build>
115
116 </project>