Merge "Remove unnecessary declaration of <prerequisites> in features"
[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.3.0-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           </instructions>
60         </configuration>
61       </plugin>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-jar-plugin</artifactId>
65         <executions>
66           <execution>
67             <goals>
68               <goal>test-jar</goal>
69             </goals>
70             <phase>package</phase>
71           </execution>
72         </executions>
73       </plugin>
74     </plugins>
75   </build>
76
77 </project>