Merge "Bug 6198 - Use sal-netconf-connector to connet device costs too much time"
[netconf.git] / netconf / netconf-client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.odlparent</groupId>
7     <artifactId>bundle-parent</artifactId>
8     <version>1.8.0-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.netconf</groupId>
13   <artifactId>netconf-client</artifactId>
14   <version>1.2.0-SNAPSHOT</version>
15   <name>${project.artifactId}</name>
16   <packaging>bundle</packaging>
17
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>org.opendaylight.netconf</groupId>
22         <artifactId>netconf-subsystem</artifactId>
23         <version>${project.version}</version>
24         <type>pom</type>
25         <scope>import</scope>
26       </dependency>
27     </dependencies>
28   </dependencyManagement>
29
30   <dependencies>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>netconf-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>netconf-netty-util</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>${project.groupId}</groupId>
41       <artifactId>netconf-util</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>netconf-util</artifactId>
46       <type>test-jar</type>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>com.google.guava</groupId>
51       <artifactId>guava</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>protocol-framework</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.slf4j</groupId>
59       <artifactId>slf4j-api</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>mockito-configuration</artifactId>
64     </dependency>
65   </dependencies>
66
67   <build>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-jar-plugin</artifactId>
72         <executions>
73           <execution>
74             <goals>
75               <goal>test-jar</goal>
76             </goals>
77             <phase>package</phase>
78           </execution>
79         </executions>
80       </plugin>
81     </plugins>
82   </build>
83
84 </project>