Merge "Bug 1616: Issues with using container and default values in config yang"
[controller.git] / opendaylight / 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>netconf-subsystem</artifactId>
7     <version>0.2.5-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10   <artifactId>netconf-ssh</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>netconf-api</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>netconf-util</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>commons-io</groupId>
25       <artifactId>commons-io</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.bouncycastle</groupId>
29       <artifactId>bcpkix-jdk15on</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.bouncycastle</groupId>
33       <artifactId>bcprov-jdk15on</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>usermanager</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller.thirdparty</groupId>
41       <artifactId>ganymed</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.apache.sshd</groupId>
45       <artifactId>sshd-core</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.slf4j</groupId>
49       <artifactId>slf4j-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>mockito-configuration</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>netconf-netty-util</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>netconf-client</artifactId>
64       <scope>test</scope>
65     </dependency>
66   </dependencies>
67
68   <build>
69     <plugins>
70       <plugin>
71         <groupId>org.apache.felix</groupId>
72         <artifactId>maven-bundle-plugin</artifactId>
73         <configuration>
74           <instructions>
75             <Bundle-Activator>org.opendaylight.controller.netconf.ssh.osgi.NetconfSSHActivator</Bundle-Activator>
76             <Import-Package>com.google.common.base,
77               ch.ethz.ssh2,
78               ch.ethz.ssh2.signature,
79               org.apache.commons.io,
80               org.opendaylight.controller.netconf.util.osgi,
81               org.opendaylight.controller.usermanager,
82               org.opendaylight.controller.sal.authorization,
83               org.opendaylight.controller.sal.utils,
84               org.osgi.framework,
85               org.osgi.util.tracker,
86               org.slf4j,
87               org.bouncycastle.openssl,
88               io.netty.bootstrap, io.netty.buffer, io.netty.channel, io.netty.channel.local, io.netty.channel.nio,
89               io.netty.handler.stream, io.netty.util.concurrent, org.apache.commons.lang3,
90               org.opendaylight.controller.netconf.util.messages</Import-Package>
91           </instructions>
92         </configuration>
93       </plugin>
94       <plugin>
95         <groupId>org.apache.maven.plugins</groupId>
96         <artifactId>maven-jar-plugin</artifactId>
97         <executions>
98           <execution>
99             <goals>
100               <goal>test-jar</goal>
101             </goals>
102             <phase>package</phase>
103           </execution>
104         </executions>
105       </plugin>
106     </plugins>
107   </build>
108
109 </project>