Merge "Activate findbugs sonar profile"
[controller.git] / opendaylight / netconf / netconf-client / 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
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.2.5-SNAPSHOT</version>
9   </parent>
10   <artifactId>netconf-client</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-netty-util</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>netconf-util</artifactId>
26     </dependency>
27       <dependency>
28           <groupId>${project.groupId}</groupId>
29           <artifactId>netconf-util</artifactId>
30           <type>test-jar</type>
31           <scope>test</scope>
32       </dependency>
33     <dependency>
34       <groupId>com.google.guava</groupId>
35       <artifactId>guava</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>protocol-framework</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.slf4j</groupId>
43       <artifactId>slf4j-api</artifactId>
44     </dependency>
45       <dependency>
46           <groupId>org.opendaylight.yangtools</groupId>
47           <artifactId>mockito-configuration</artifactId>
48       </dependency>
49   </dependencies>
50
51   <build>
52     <plugins>
53       <plugin>
54         <groupId>org.apache.felix</groupId>
55         <artifactId>maven-bundle-plugin</artifactId>
56         <configuration>
57           <instructions>
58             <Export-Package>org.opendaylight.controller.netconf.client.*,</Export-Package>
59             <Import-Package>com.google.common.base,
60                             com.google.common.collect,
61                             io.netty.channel,
62                             io.netty.channel.socket,
63                             io.netty.util,
64                             io.netty.util.concurrent,
65                             javax.annotation,
66                             javax.net.ssl,
67                             javax.xml.namespace,
68                             javax.xml.parsers,
69                             javax.xml.xpath,
70                             org.opendaylight.controller.netconf.api,
71                             org.opendaylight.controller.netconf.util.*,
72                             org.opendaylight.controller.netconf.nettyutil.*,
73                             org.opendaylight.protocol.framework,
74                             org.openexi.*,
75                             org.slf4j,
76                             org.w3c.dom,
77                             org.xml.sax,
78                             io.netty.handler.codec</Import-Package>
79           </instructions>
80         </configuration>
81       </plugin>
82       <plugin>
83         <groupId>org.apache.maven.plugins</groupId>
84         <artifactId>maven-jar-plugin</artifactId>
85         <executions>
86           <execution>
87             <goals>
88               <goal>test-jar</goal>
89             </goals>
90             <phase>package</phase>
91           </execution>
92         </executions>
93       </plugin>
94     </plugins>
95   </build>
96
97 </project>