Merge "Simplify method isMutualExclusive in Subnet. Remove redundant 'if' statements."
[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.3-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             <version>0.4.1-SNAPSHOT</version>
40         </dependency>
41     </dependencies>
42
43     <build>
44         <plugins>
45             <plugin>
46                 <groupId>org.apache.maven.plugins</groupId>
47                 <artifactId>maven-jar-plugin</artifactId>
48                 <version>2.4</version>
49                 <executions>
50                     <execution>
51                         <phase>package</phase>
52                         <goals>
53                             <goal>test-jar</goal>
54                         </goals>
55                     </execution>
56                 </executions>
57             </plugin>
58             <plugin>
59                 <groupId>org.apache.felix</groupId>
60                 <artifactId>maven-bundle-plugin</artifactId>
61                 <configuration>
62                     <instructions>
63                         <Bundle-Activator>org.opendaylight.controller.netconf.osgi.NetconfSSHActivator</Bundle-Activator>
64                         <Export-Package>
65                             org.opendaylight.controller.netconf.ssh,
66                         </Export-Package>
67                         <Import-Package>
68                             com.google.common.base,
69                             ch.ethz.ssh2,
70                             ch.ethz.ssh2.signature,
71                             java.net,
72                             javax.annotation,
73                             org.apache.commons.io,
74                             org.opendaylight.controller.netconf.util,
75                             org.opendaylight.controller.netconf.util.osgi,
76                             org.opendaylight.controller.usermanager,
77                             org.opendaylight.controller.sal.authorization,
78                             org.opendaylight.controller.sal.utils,
79                             org.opendaylight.protocol.framework,
80                             org.osgi.framework,
81                             org.osgi.util.tracker,
82                             org.slf4j,
83                         </Import-Package>
84                     </instructions>
85                 </configuration>
86             </plugin>
87         </plugins>
88     </build>
89
90 </project>