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>com.google.guava</groupId>
29       <artifactId>guava</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>protocol-framework</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.slf4j</groupId>
37       <artifactId>slf4j-api</artifactId>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <configuration>
47           <instructions>
48             <Export-Package>org.opendaylight.controller.netconf.client.*,</Export-Package>
49             <Import-Package>com.google.common.base,
50                             com.google.common.collect,
51                             io.netty.channel,
52                             io.netty.channel.socket,
53                             io.netty.util,
54                             io.netty.util.concurrent,
55                             javax.annotation,
56                             javax.net.ssl,
57                             javax.xml.namespace,
58                             javax.xml.parsers,
59                             javax.xml.xpath,
60                             org.opendaylight.controller.netconf.api,
61                             org.opendaylight.controller.netconf.util.*,
62                             org.opendaylight.controller.netconf.nettyutil.*,
63                             org.opendaylight.protocol.framework,
64                             org.openexi.*,
65                             org.slf4j,
66                             org.w3c.dom,
67                             org.xml.sax,
68                             io.netty.handler.codec</Import-Package>
69           </instructions>
70         </configuration>
71       </plugin>
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-jar-plugin</artifactId>
75         <executions>
76           <execution>
77             <goals>
78               <goal>test-jar</goal>
79             </goals>
80             <phase>package</phase>
81           </execution>
82         </executions>
83       </plugin>
84     </plugins>
85   </build>
86
87 </project>