Merge "BUG-509: add missing copyright headers"
[controller.git] / opendaylight / netconf / netconf-client / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3
4     <parent>
5         <artifactId>netconf-subsystem</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>0.2.5-SNAPSHOT</version>
8     </parent>
9     <artifactId>netconf-client</artifactId>
10     <name>${project.artifactId}</name>
11     <packaging>bundle</packaging>
12
13
14     <dependencies>
15         <dependency>
16             <groupId>${project.groupId}</groupId>
17             <artifactId>netconf-util</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>${project.groupId}</groupId>
21             <artifactId>netconf-api</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>protocol-framework</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>com.google.guava</groupId>
29             <artifactId>guava</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.slf4j</groupId>
33             <artifactId>slf4j-api</artifactId>
34         </dependency>
35     </dependencies>
36
37     <build>
38         <plugins>
39             <plugin>
40                 <groupId>org.apache.felix</groupId>
41                 <artifactId>maven-bundle-plugin</artifactId>
42                 <configuration>
43                     <instructions>
44                         <Export-Package>
45                             org.opendaylight.controller.netconf.client,
46                         </Export-Package>
47                         <Import-Package>
48                             com.google.common.base,
49                             com.google.common.collect,
50                             io.netty.channel,
51                             io.netty.channel.socket,
52                             io.netty.util,
53                             io.netty.util.concurrent,
54                             javax.annotation,
55                             javax.net.ssl,
56                             javax.xml.namespace,
57                             javax.xml.parsers,
58                             javax.xml.xpath,
59                             org.opendaylight.controller.netconf.api,
60                             org.opendaylight.controller.netconf.util,
61                             org.opendaylight.controller.netconf.util.*,
62                             org.opendaylight.protocol.framework,
63                             org.slf4j,
64                             org.w3c.dom,
65                             org.xml.sax,
66                             io.netty.handler.codec
67                         </Import-Package>
68                     </instructions>
69                 </configuration>
70             </plugin>
71             <plugin>
72                 <groupId>org.apache.maven.plugins</groupId>
73                 <artifactId>maven-jar-plugin</artifactId>
74                 <version>2.4</version>
75                 <executions>
76                     <execution>
77                         <phase>package</phase>
78                         <goals>
79                             <goal>test-jar</goal>
80                         </goals>
81                     </execution>
82                 </executions>
83             </plugin>
84         </plugins>
85     </build>
86
87 </project>