Merge "Bug 6198 - Use sal-netconf-connector to connet device costs too much time"
[netconf.git] / netconf / netconf-ssh / 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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-parent</artifactId>
7     <version>0.6.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.netconf</groupId>
12   <artifactId>netconf-ssh</artifactId>
13   <version>1.2.0-SNAPSHOT</version>
14   <name>${project.artifactId}</name>
15   <packaging>bundle</packaging>
16
17   <dependencyManagement>
18     <dependencies>
19       <dependency>
20         <groupId>org.opendaylight.netconf</groupId>
21         <artifactId>netconf-subsystem</artifactId>
22         <version>${project.version}</version>
23         <type>pom</type>
24         <scope>import</scope>
25       </dependency>
26     </dependencies>
27   </dependencyManagement>
28
29   <dependencies>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>netconf-api</artifactId>
33     </dependency>
34       <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>netconf-auth</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>netconf-util</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>netconf-impl</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>threadpool-config-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>netty-config-api</artifactId>
53     </dependency>
54
55     <dependency>
56       <groupId>org.opendaylight.mdsal.model</groupId>
57       <artifactId>ietf-inet-types-2013-07-15</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.bouncycastle</groupId>
61       <artifactId>bcpkix-jdk15on</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.bouncycastle</groupId>
65       <artifactId>bcprov-jdk15on</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>com.google.guava</groupId>
69       <artifactId>guava</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.slf4j</groupId>
73       <artifactId>slf4j-api</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.yangtools</groupId>
77       <artifactId>mockito-configuration</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>${project.groupId}</groupId>
82       <artifactId>netconf-netty-util</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}</groupId>
86       <artifactId>netconf-client</artifactId>
87       <scope>test</scope>
88     </dependency>
89   </dependencies>
90
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.felix</groupId>
95         <artifactId>maven-bundle-plugin</artifactId>
96         <configuration>
97           <instructions>
98             <Bundle-Activator>org.opendaylight.netconf.ssh.osgi.NetconfSSHActivator</Bundle-Activator>
99           </instructions>
100         </configuration>
101       </plugin>
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-jar-plugin</artifactId>
105         <executions>
106           <execution>
107             <goals>
108               <goal>test-jar</goal>
109             </goals>
110             <phase>package</phase>
111           </execution>
112         </executions>
113       </plugin>
114         <plugin>
115             <groupId>org.opendaylight.yangtools</groupId>
116             <artifactId>yang-maven-plugin</artifactId>
117         </plugin>
118     </plugins>
119   </build>
120
121 </project>