Release netconf
[netconf.git] / netconf / 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>4.0.1</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>${project.groupId}</groupId>
26       <artifactId>netconf-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>netconf-netty-util</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>netconf-util</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>com.google.guava</groupId>
38       <artifactId>guava</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>com.guicedee.services</groupId>
42       <artifactId>javax.inject</artifactId>
43       <optional>true</optional>
44     </dependency>
45     <dependency>
46       <groupId>org.osgi</groupId>
47       <artifactId>org.osgi.service.component.annotations</artifactId>
48     </dependency>
49
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>mockito-configuration</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>netconf-util</artifactId>
57       <type>test-jar</type>
58       <scope>test</scope>
59     </dependency>
60   </dependencies>
61
62   <build>
63     <plugins>
64       <plugin>
65         <artifactId>maven-jar-plugin</artifactId>
66         <executions>
67           <execution>
68             <goals>
69               <goal>test-jar</goal>
70             </goals>
71           </execution>
72         </executions>
73       </plugin>
74       <plugin>
75         <artifactId>maven-source-plugin</artifactId>
76         <executions>
77           <execution>
78             <goals>
79               <goal>test-jar-no-fork</goal>
80             </goals>
81           </execution>
82         </executions>
83       </plugin>
84     </plugins>
85   </build>
86
87 </project>