Release netconf
[netconf.git] / protocol / netconf-client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 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.4</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <artifactId>netconf-client</artifactId>
20   <name>${project.artifactId}</name>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>com.guicedee.services</groupId>
30       <artifactId>javax.inject</artifactId>
31       <optional>true</optional>
32     </dependency>
33     <dependency>
34       <groupId>io.netty</groupId>
35       <artifactId>netty-codec</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>io.netty</groupId>
39       <artifactId>netty-common</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>io.netty</groupId>
43       <artifactId>netty-handler</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>io.netty</groupId>
47       <artifactId>netty-transport</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.checkerframework</groupId>
51       <artifactId>checker-qual</artifactId>
52       <scope>provided</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
56       <artifactId>rfc6991-ietf-inet-types</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.netconf</groupId>
60       <artifactId>netconf-api</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.netconf</groupId>
64       <artifactId>netconf-netty-util</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.netconf</groupId>
68       <artifactId>netconf-util</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.netconf</groupId>
72       <artifactId>shaded-exificient</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.osgi</groupId>
76       <artifactId>org.osgi.service.component.annotations</artifactId>
77     </dependency>
78
79     <dependency>
80       <groupId>org.opendaylight.yangtools</groupId>
81       <artifactId>mockito-configuration</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.netconf</groupId>
85       <artifactId>netconf-util</artifactId>
86       <type>test-jar</type>
87       <scope>test</scope>
88     </dependency>
89   </dependencies>
90
91   <build>
92     <plugins>
93       <plugin>
94         <artifactId>maven-jar-plugin</artifactId>
95         <executions>
96           <execution>
97             <goals>
98               <goal>test-jar</goal>
99             </goals>
100           </execution>
101         </executions>
102       </plugin>
103       <plugin>
104         <artifactId>maven-source-plugin</artifactId>
105         <executions>
106           <execution>
107             <goals>
108               <goal>test-jar-no-fork</goal>
109             </goals>
110           </execution>
111         </executions>
112       </plugin>
113     </plugins>
114   </build>
115
116 </project>