Merge "Add filtering capability to config.ini in order to reference logging bridge...
[controller.git] / opendaylight / netconf / netconf-ssh / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <parent>
4         <artifactId>netconf-subsystem</artifactId>
5         <groupId>org.opendaylight.controller</groupId>
6         <version>0.2.5-SNAPSHOT</version>
7         <relativePath>../</relativePath>
8     </parent>
9     <modelVersion>4.0.0</modelVersion>
10     <artifactId>netconf-ssh</artifactId>
11     <name>${project.artifactId}</name>
12     <packaging>bundle</packaging>
13
14
15     <dependencies>
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>netconf-util</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>${project.groupId}</groupId>
22             <artifactId>netconf-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.slf4j</groupId>
26             <artifactId>slf4j-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller.thirdparty</groupId>
30             <artifactId>ganymed</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>commons-io</groupId>
34             <artifactId>commons-io</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.controller</groupId>
38             <artifactId>usermanager</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.bouncycastle</groupId>
42             <artifactId>bcprov-jdk15on</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.bouncycastle</groupId>
46             <artifactId>bcpkix-jdk15on</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.yangtools</groupId>
50             <artifactId>mockito-configuration</artifactId>
51             <scope>test</scope>
52         </dependency>
53     </dependencies>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <groupId>org.apache.maven.plugins</groupId>
59                 <artifactId>maven-jar-plugin</artifactId>
60                 <version>2.4</version>
61                 <executions>
62                     <execution>
63                         <phase>package</phase>
64                         <goals>
65                             <goal>test-jar</goal>
66                         </goals>
67                     </execution>
68                 </executions>
69             </plugin>
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
76                         </Bundle-Activator>
77                         <Import-Package>
78                             com.google.common.base,
79                             ch.ethz.ssh2,
80                             ch.ethz.ssh2.signature,
81                             org.apache.commons.io,
82                             org.opendaylight.controller.netconf.util.osgi,
83                             org.opendaylight.controller.usermanager,
84                             org.opendaylight.controller.sal.authorization,
85                             org.opendaylight.controller.sal.utils,
86                             org.osgi.framework,
87                             org.osgi.util.tracker,
88                             org.slf4j,
89                             org.bouncycastle.openssl
90                         </Import-Package>
91                     </instructions>
92                 </configuration>
93             </plugin>
94         </plugins>
95     </build>
96
97 </project>