Merge "Convert netconf to use artifacts"
[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.3.0-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-auth</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>netconf-util</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>commons-io</groupId>
29       <artifactId>commons-io</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.bouncycastle</groupId>
33       <artifactId>bcpkix-jdk15on</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.bouncycastle</groupId>
37       <artifactId>bcprov-jdk15on</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>com.google.guava</groupId>
49           <artifactId>guava</artifactId>
50       </dependency>
51     <dependency>
52       <groupId>org.slf4j</groupId>
53       <artifactId>slf4j-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>mockito-configuration</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>netconf-netty-util</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>netconf-client</artifactId>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70
71   <build>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.felix</groupId>
75         <artifactId>maven-bundle-plugin</artifactId>
76         <configuration>
77           <instructions>
78             <Bundle-Activator>org.opendaylight.controller.netconf.ssh.osgi.NetconfSSHActivator</Bundle-Activator>
79             <Import-Package>*</Import-Package>
80           </instructions>
81         </configuration>
82       </plugin>
83       <plugin>
84         <groupId>org.apache.maven.plugins</groupId>
85         <artifactId>maven-jar-plugin</artifactId>
86         <executions>
87           <execution>
88             <goals>
89               <goal>test-jar</goal>
90             </goals>
91             <phase>package</phase>
92           </execution>
93         </executions>
94       </plugin>
95     </plugins>
96   </build>
97
98 </project>